BeeScaffold add FAB option

hmxc
小赖 4 years ago
parent 707950a1f2
commit 932648a707

@ -103,7 +103,6 @@ class _CommunityIndexState extends State<CommunityIndex>
child: Icon( child: Icon(
Icons.add, Icons.add,
color: Colors.white, color: Colors.white,
size: 40.sp,
), ),
onPressed: noteCreateRouter, onPressed: noteCreateRouter,
); );
@ -115,9 +114,7 @@ class _CommunityIndexState extends State<CommunityIndex>
return BeeScaffold( return BeeScaffold(
title: '社区', title: '社区',
actions: _listActions(), actions: _listActions(),
body: Stack( body: Column(
children: [
Column(
children: [ children: [
Material( Material(
color: kForeGroundColor, color: kForeGroundColor,
@ -163,13 +160,7 @@ class _CommunityIndexState extends State<CommunityIndex>
// _floatingActionButton(), // _floatingActionButton(),
], ],
), ),
Positioned( fab: _floatingActionButton(),
right: 30.w,
bottom: 50.w,
child: _floatingActionButton(),
)
],
),
); );
} }
} }

@ -22,8 +22,9 @@ class BeeScaffold extends StatefulWidget {
final Widget leading; final Widget leading;
final Widget bottomNavi; final Widget bottomNavi;
final PreferredSizeWidget appBarBottom; final PreferredSizeWidget appBarBottom;
BeeScaffold( final FloatingActionButton fab;
{Key key, BeeScaffold({
Key key,
@required this.title, @required this.title,
this.body, this.body,
this.actions, this.actions,
@ -31,19 +32,21 @@ class BeeScaffold extends StatefulWidget {
this.bgColor = Colors.white, this.bgColor = Colors.white,
this.bodyColor = const Color(0xFFF9F9F9), this.bodyColor = const Color(0xFFF9F9F9),
this.bottomNavi, this.bottomNavi,
this.appBarBottom}) this.appBarBottom,
: super(key: key); this.fab,
}) : super(key: key);
BeeScaffold.white( BeeScaffold.white({
{Key key, Key key,
@required this.title, @required this.title,
this.body, this.body,
this.actions, this.actions,
this.leading, this.leading,
this.bgColor = Colors.white, this.bgColor = Colors.white,
this.bottomNavi, this.bottomNavi,
this.appBarBottom}) this.appBarBottom,
: this.bodyColor = Colors.white, this.fab,
}) : this.bodyColor = Colors.white,
super(key: key); super(key: key);
@override @override
@ -67,6 +70,7 @@ class _BeeScaffoldState extends State<BeeScaffold> {
), ),
body: widget.body, body: widget.body,
bottomNavigationBar: widget.bottomNavi, bottomNavigationBar: widget.bottomNavi,
floatingActionButton: widget.fab,
); );
} }
} }

Loading…
Cancel
Save