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