feat: hide tabbar when pushing to view page (#4050)

This commit is contained in:
Lucas.Xu
2023-11-30 16:56:59 +08:00
committed by GitHub
parent d7a67c0efb
commit c0ae803280
8 changed files with 92 additions and 89 deletions

View File

@ -121,15 +121,12 @@ class FlowyBottomSheetPage extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Padding(
padding: const EdgeInsets.fromLTRB(16, 16, 16, 32),
child: Column(
mainAxisSize: MainAxisSize.min,
children: [
_SheetTopBar(title: title, isRoot: isRoot),
child,
],
),
return Column(
mainAxisSize: MainAxisSize.min,
children: [
_SheetTopBar(title: title, isRoot: isRoot),
child,
],
);
}
}