Compare commits

...

2 Commits

2 changed files with 4 additions and 2 deletions

View File

@ -84,7 +84,6 @@ class _MyHomePageState extends State<MyHomePage> {
return FutureBuilder(
future: _initCompleter.future,
builder: (context, snapshot) {
print("${snapshot.hasData}");
if (!snapshot.hasData) {
return Center(child: CircularProgressIndicator());
}

View File

@ -13,9 +13,12 @@ Future<T?> showDialogOrModal<T>({
ScreenSize.small => showModalBottomSheet<T>(
context: context,
showDragHandle: showDragHandle,
isScrollControlled: true,
builder:
(context) => Padding(
padding: EdgeInsets.only(bottom: 32),
padding: EdgeInsets.only(
bottom: 32 + MediaQuery.of(context).viewInsets.bottom,
),
child: builder(context),
),
),