v1.0.0
sliver_fab
一個包裝器小部件,允許將小部件放置在 FlexibleSpacebar 的邊緣
76喜歡 27近 30 天下載40Pub 分數
平台暫無資料
一個用於帶靈活空間欄的浮動操作按鈕的 Flutter 插件
{"sdk":"flutter"}以下為英文專案原文快照,最新內容請造訪 GitHub。
A wrapper widget allowing to place a widget on the edge of FlexibleSpacebar.
gif
gif
class MyHomePage extends StatelessWidget {
@override
Widget build(BuildContext context) {
return new Scaffold(
body: new Builder(
builder: (context) =>
new SliverFab(
floatingWidget: FloatingActionButton(
onPressed: () =>
Scaffold.of(context).showSnackBar(
SnackBar(content: Text("You clicked FAB!"))),
child: Icon(Icons.add),
),
floatingPosition: FloatingPosition(right: 16),
expandedHeight: 256.0,
slivers: <Widget>[
new SliverAppBar(
expandedHeight: 256.0,
pinned: true,
flexibleSpace: new FlexibleSpaceBar(
title: new Text("SliverFab Example"),
background: new Image.asset(
"img.jpg",
fit: BoxFit.cover,
),
),
),
new SliverList(
delegate: new SliverChildListDelegate(
new List.generate(
30,
(int index) =>
new ListTile(title: new Text("Item $index")),
),
),
),
],
),
),
);
}
}
Add this to your package's pubspec.yaml file:
dependencies:
sliver_fab: "^1.0.0"
You can install packages from the command line:
with Flutter:
$ flutter packages get
Alternatively, your editor might support packages get. Check the docs for your editor to learn more.
Now in your Dart code, you can use:
import 'package:sliver_fab/sliver_fab.dart';
This package was made mostly for use case I needed. If you fill it is missing any features or you have found a bug, pull requests are very welcome!