fix: system navigation overlapping UI (#853)

This commit is contained in:
Dhruvan Bhalara
2023-05-10 15:48:51 +05:30
committed by GitHub
parent 289c6cd7a9
commit b803ce7435
4 changed files with 15 additions and 3 deletions

View File

@ -20,6 +20,7 @@ class InstallerView extends StatelessWidget {
builder: (context, model, child) => WillPopScope(
child: SafeArea(
top: false,
bottom: false,
child: Scaffold(
body: CustomScrollView(
controller: model.scrollController,
@ -153,6 +154,11 @@ class InstallerView extends StatelessWidget {
),
),
),
SliverFillRemaining(
hasScrollBody: false,
child: SizedBox(
height: MediaQuery.of(context).viewPadding.bottom),
),
],
),
),