mirror of
https://github.com/Iconica-Development/flutter_availability.git
synced 2025-05-19 13:13:44 +02:00
fix: add keyboard padding for pause selection dialog
This commit is contained in:
parent
0525e9d3b6
commit
0302646756
1 changed files with 57 additions and 52 deletions
|
@ -316,11 +316,15 @@ class _AvailabilityBreakSelectionDialogState
|
|||
|
||||
return Stack(
|
||||
children: [
|
||||
Container(
|
||||
Padding(
|
||||
padding: EdgeInsets.only(
|
||||
bottom: MediaQuery.of(context).viewInsets.bottom,
|
||||
),
|
||||
child: SingleChildScrollView(
|
||||
child: Container(
|
||||
margin: EdgeInsets.symmetric(
|
||||
horizontal: spacing.sidePadding,
|
||||
),
|
||||
child: SingleChildScrollView(
|
||||
child: Column(
|
||||
children: [
|
||||
const SizedBox(height: 44),
|
||||
|
@ -374,6 +378,7 @@ class _AvailabilityBreakSelectionDialogState
|
|||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
Positioned(
|
||||
right: 0,
|
||||
top: 0,
|
||||
|
|
Loading…
Reference in a new issue