mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-17 17:57:40 +00:00
make entire DebugInfoDialog scrollable
This commit is contained in:
parent
9e3cc4544d
commit
2d22b9a4ac
1 changed files with 3 additions and 1 deletions
|
@ -319,7 +319,9 @@ class _AdvancedSettings extends ConsumerState<AdvancedSettings> {
|
|||
useSafeArea: false,
|
||||
barrierDismissible: true,
|
||||
builder: (context) {
|
||||
return const DebugInfoDialog();
|
||||
return const SingleChildScrollView(
|
||||
child: DebugInfoDialog(),
|
||||
);
|
||||
},
|
||||
);
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue