1
0
forked from firka/firka

disable drag bc login is fullscreen

This commit is contained in:
zypherift
2026-03-03 19:55:15 +01:00
parent 6c674bd596
commit 5626466107
2 changed files with 2 additions and 1 deletions

View File

@@ -26,7 +26,7 @@ void showReauthBottomSheet(
elevation: 100,
isScrollControlled: true,
isDismissible: true,
enableDrag: true,
enableDrag: false,
backgroundColor: Colors.transparent,
builder: (BuildContext context) {
return Container(

View File

@@ -912,6 +912,7 @@ class _SettingsScreenState extends FirkaState<SettingsScreen> {
showModalBottomSheet<void>(
context: context,
isScrollControlled: true,
enableDrag: false,
builder: (BuildContext context) {
return LoginWebviewWidget(widget.data);
},