feat: mobile grid fab (#4093)

This commit is contained in:
Richard Shiue
2023-12-05 17:24:38 +08:00
committed by GitHub
parent 04eea26a55
commit d25830aece
4 changed files with 163 additions and 23 deletions

View File

@ -93,20 +93,12 @@ class _MobileViewPageState extends State<MobileViewPage> {
child: Builder(
builder: (context) {
final view = context.watch<ViewBloc>().state.view;
return _buildApp(
view,
actions,
body,
);
return _buildApp(view, actions, body);
},
),
);
} else {
return _buildApp(
null,
[],
body,
);
return _buildApp(null, [], body);
}
},
);