change height to fullscreen

This commit is contained in:
zypherift
2026-03-03 15:14:53 +01:00
parent 5a2616bf71
commit 0317f47b88

View File

@@ -393,8 +393,12 @@ class _LoginScreenState extends FirkaState<LoginScreen> {
showModalBottomSheet<void>( showModalBottomSheet<void>(
context: context, context: context,
isScrollControlled: true, isScrollControlled: true,
showDragHandle: false,
builder: (BuildContext context) { builder: (BuildContext context) {
return _loginWebView; return SizedBox(
height: MediaQuery.sizeOf(context).height,
child: _loginWebView,
);
}, },
); );
}, },