mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-17 17:57:40 +00:00
fix transaction broadcast error text overflow on desktop
This commit is contained in:
parent
1d3b07490d
commit
1e1a472d42
1 changed files with 7 additions and 3 deletions
|
@ -243,9 +243,13 @@ class _ConfirmTransactionViewState
|
||||||
const SizedBox(
|
const SizedBox(
|
||||||
height: 24,
|
height: 24,
|
||||||
),
|
),
|
||||||
Text(
|
Flexible(
|
||||||
e.toString(),
|
child: SingleChildScrollView(
|
||||||
style: STextStyles.smallMed14(context),
|
child: SelectableText(
|
||||||
|
e.toString(),
|
||||||
|
style: STextStyles.smallMed14(context),
|
||||||
|
),
|
||||||
|
),
|
||||||
),
|
),
|
||||||
const SizedBox(
|
const SizedBox(
|
||||||
height: 56,
|
height: 56,
|
||||||
|
|
Loading…
Reference in a new issue