feat: Add Click to Copy for the Exchange Amount in the invoice (#882)
Co-authored-by: OmarHatem <omarh.ismail1@gmail.com>
Rafael Saes committed
Apr 16, 2023 at 13:27 UTC
77ab6b49f4178ad4d8ddc090dd783a9a3f956c88
1 file changed
+1
-1
lib/view_model/exchange/exchange_trade_view_model.dart
+1
-1
@@ -140,7 +140,7 @@ abstract class ExchangeTradeViewModelBase with Store {
140
}
141
142
items.addAll([
143
- ExchangeTradeItem(title: S.current.amount, data: '${trade.amount}', isCopied: false),
143
+ ExchangeTradeItem(title: S.current.amount, data: '${trade.amount}', isCopied: true),
144
ExchangeTradeItem(
145
title: S.current.send_to_this_address('${trade.from}', tagFrom) + ':',
146
data: trade.inputAddress ?? '',