mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2025-01-09 12:19:24 +00:00
fix gui overflow issues
This commit is contained in:
parent
91de7ddbc0
commit
216719ba56
2 changed files with 2 additions and 1 deletions
|
@ -119,7 +119,7 @@ class _DesktopWalletFeaturesState extends ConsumerState<DesktopWalletFeatures> {
|
||||||
barrierDismissible: false,
|
barrierDismissible: false,
|
||||||
builder: (context) => DesktopDialog(
|
builder: (context) => DesktopDialog(
|
||||||
maxWidth: 500,
|
maxWidth: 500,
|
||||||
maxHeight: 210,
|
maxHeight: double.infinity,
|
||||||
child: Padding(
|
child: Padding(
|
||||||
padding: const EdgeInsets.symmetric(horizontal: 32, vertical: 20),
|
padding: const EdgeInsets.symmetric(horizontal: 32, vertical: 20),
|
||||||
child: Column(
|
child: Column(
|
||||||
|
|
|
@ -246,6 +246,7 @@ class _MoreFeaturesDialogState extends ConsumerState<MoreFeaturesDialog> {
|
||||||
wallet.viewOnlyType == ViewOnlyWalletType.addressOnly;
|
wallet.viewOnlyType == ViewOnlyWalletType.addressOnly;
|
||||||
|
|
||||||
return DesktopDialog(
|
return DesktopDialog(
|
||||||
|
maxHeight: double.infinity,
|
||||||
child: Column(
|
child: Column(
|
||||||
mainAxisSize: MainAxisSize.min,
|
mainAxisSize: MainAxisSize.min,
|
||||||
children: [
|
children: [
|
||||||
|
|
Loading…
Reference in a new issue