Fix unlock modal keyboard inset on android
continuous-integration/drone/pr Build is failing Details

This commit is contained in:
Sarah Jamie Lewis 2021-05-26 15:44:00 -07:00
parent 8551e9cd11
commit 7d6fc268b5
1 changed files with 9 additions and 6 deletions

View File

@ -129,8 +129,11 @@ class _ProfileMgrViewState extends State<ProfileMgrView> {
void _modalUnlockProfiles() {
showModalBottomSheet<void>(
context: context,
isScrollControlled: true,
builder: (BuildContext context) {
return RepaintBoundary(
return Padding(
padding: MediaQuery.of(context).viewInsets,
child: RepaintBoundary(
child: Container(
height: 200, // bespoke value courtesy of the [TextField] docs
child: Center(
@ -165,7 +168,7 @@ class _ProfileMgrViewState extends State<ProfileMgrView> {
Spacer()
]),
],
)),
))),
)));
});
}