diff --git a/lib/pages/exchange_view/trade_details_view.dart b/lib/pages/exchange_view/trade_details_view.dart index 68a75704a..e64c1154b 100644 --- a/lib/pages/exchange_view/trade_details_view.dart +++ b/lib/pages/exchange_view/trade_details_view.dart @@ -669,21 +669,29 @@ class _TradeDetailsViewState extends ConsumerState { mainAxisAlignment: MainAxisAlignment.spaceBetween, crossAxisAlignment: CrossAxisAlignment.start, children: [ - Column( - crossAxisAlignment: CrossAxisAlignment.start, - children: [ - Text( - "${trade.exchangeName} address", - style: STextStyles.itemSubtitle(context), - ), - const SizedBox( - height: 4, - ), - SelectableText( - trade.payInAddress, - style: STextStyles.itemSubtitle12(context), - ), - ], + Expanded( + child: Column( + crossAxisAlignment: CrossAxisAlignment.start, + children: [ + Text( + "${trade.exchangeName} address", + style: STextStyles.itemSubtitle(context), + ), + const SizedBox( + height: 4, + ), + Row( + children: [ + Flexible( + child: SelectableText( + trade.payInAddress, + style: STextStyles.itemSubtitle12(context), + ), + ), + ], + ), + ], + ), ), if (isDesktop) IconCopyButton( @@ -760,9 +768,15 @@ class _TradeDetailsViewState extends ConsumerState { const SizedBox( height: 4, ), - SelectableText( - trade.payInAddress, - style: STextStyles.itemSubtitle12(context), + Row( + children: [ + Expanded( + child: SelectableText( + trade.payInAddress, + style: STextStyles.itemSubtitle12(context), + ), + ), + ], ), const SizedBox( height: 10,