mirror of
https://gitlab.com/famedly/fluffychat.git
synced 2024-11-27 23:09:35 +01:00
fix:
barrierDismissible: true,
This commit is contained in:
parent
0e172c7465
commit
de9e3739fe
@ -25,11 +25,13 @@ class BootstrapDialog extends StatefulWidget {
|
|||||||
context: context,
|
context: context,
|
||||||
builder: (context) => this,
|
builder: (context) => this,
|
||||||
useRootNavigator: false,
|
useRootNavigator: false,
|
||||||
|
barrierDismissible: true,
|
||||||
)
|
)
|
||||||
: showDialog(
|
: showDialog(
|
||||||
context: context,
|
context: context,
|
||||||
builder: (context) => this,
|
builder: (context) => this,
|
||||||
useRootNavigator: false,
|
useRootNavigator: false,
|
||||||
|
barrierDismissible: true,
|
||||||
);
|
);
|
||||||
|
|
||||||
@override
|
@override
|
||||||
|
@ -14,11 +14,13 @@ class KeyVerificationDialog extends StatefulWidget {
|
|||||||
Future<void> show(BuildContext context) => PlatformInfos.isCupertinoStyle
|
Future<void> show(BuildContext context) => PlatformInfos.isCupertinoStyle
|
||||||
? showCupertinoDialog(
|
? showCupertinoDialog(
|
||||||
context: context,
|
context: context,
|
||||||
|
barrierDismissible: true,
|
||||||
builder: (context) => this,
|
builder: (context) => this,
|
||||||
useRootNavigator: false,
|
useRootNavigator: false,
|
||||||
)
|
)
|
||||||
: showDialog(
|
: showDialog(
|
||||||
context: context,
|
context: context,
|
||||||
|
barrierDismissible: true,
|
||||||
builder: (context) => this,
|
builder: (context) => this,
|
||||||
useRootNavigator: false,
|
useRootNavigator: false,
|
||||||
);
|
);
|
||||||
|
Loading…
Reference in New Issue
Block a user