社区动态页面添加新增按钮

hmxc
小赖 4 years ago
parent ccdc83bd53
commit 78a12bb0a3

@ -39,6 +39,11 @@ class _CommunityPageState extends State<CommunityPage>
path: R.ASSETS_ICONS_ALARM_PNG,
),
],
fab: FloatingActionButton(
onPressed: () {},
heroTag: 'event_add',
child: Icon(Icons.add),
),
appBarBottom: PreferredSize(
preferredSize: Size.fromHeight(48),
child: Align(

@ -28,6 +28,11 @@ class _TopicDetailPageState extends State<TopicDetailPage> {
@override
Widget build(BuildContext context) {
return Scaffold(
floatingActionButton: FloatingActionButton(
heroTag: 'event_add',
onPressed: () {},
child: Icon(Icons.add),
),
body: BeeListView(
convert: (model) {
return model.tableList

Loading…
Cancel
Save