address overflow fix

This commit is contained in:
julian 2023-02-02 09:43:08 -06:00
parent b2d7414cb6
commit a6dae8d9e0

View file

@ -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),
),
) )
], ],
), ),