mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-16 17:27:39 +00:00
scrollable confirm send screen on desktop
This commit is contained in:
parent
c841b969b2
commit
05c2974eb0
4 changed files with 8 additions and 4 deletions
|
@ -120,7 +120,7 @@ class _PaynymDetailsPopupState extends ConsumerState<DesktopPaynymDetails> {
|
|||
showDialog(
|
||||
context: context,
|
||||
builder: (context) => DesktopDialog(
|
||||
maxHeight: double.infinity,
|
||||
maxHeight: MediaQuery.of(context).size.height - 64,
|
||||
maxWidth: 580,
|
||||
child: ConfirmTransactionView(
|
||||
walletId: widget.walletId,
|
||||
|
|
|
@ -457,7 +457,11 @@ class _ConfirmTransactionViewState
|
|||
),
|
||||
],
|
||||
),
|
||||
child,
|
||||
Flexible(
|
||||
child: SingleChildScrollView(
|
||||
child: child,
|
||||
),
|
||||
),
|
||||
],
|
||||
),
|
||||
child: Column(
|
||||
|
|
|
@ -457,7 +457,7 @@ class _DesktopSendState extends ConsumerState<DesktopSend> {
|
|||
showDialog(
|
||||
context: context,
|
||||
builder: (context) => DesktopDialog(
|
||||
maxHeight: double.infinity,
|
||||
maxHeight: MediaQuery.of(context).size.height - 64,
|
||||
maxWidth: 580,
|
||||
child: ConfirmTransactionView(
|
||||
txData: txData,
|
||||
|
|
|
@ -279,7 +279,7 @@ class _DesktopTokenSendState extends ConsumerState<DesktopTokenSend> {
|
|||
showDialog(
|
||||
context: context,
|
||||
builder: (context) => DesktopDialog(
|
||||
maxHeight: double.infinity,
|
||||
maxHeight: MediaQuery.of(context).size.height - 64,
|
||||
maxWidth: 580,
|
||||
child: ConfirmTransactionView(
|
||||
txData: txData,
|
||||
|
|
Loading…
Reference in a new issue