mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2025-03-25 08:38:45 +00:00
address overflow fix
This commit is contained in:
parent
b2d7414cb6
commit
a6dae8d9e0
1 changed files with 5 additions and 3 deletions
|
@ -103,9 +103,11 @@ class AddressCard extends StatelessWidget {
|
||||||
return RoundedWhiteContainer(
|
return RoundedWhiteContainer(
|
||||||
child: Row(
|
child: Row(
|
||||||
children: [
|
children: [
|
||||||
Text(
|
Expanded(
|
||||||
address.value,
|
child: Text(
|
||||||
style: STextStyles.itemSubtitle12(context),
|
address.value,
|
||||||
|
style: STextStyles.itemSubtitle12(context),
|
||||||
|
),
|
||||||
)
|
)
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
|
|
Loading…
Reference in a new issue