CAKE-103 | fixed placeholder of address text field (deposit card)
OleksandrSobol committed
Oct 5, 2020 at 20:55 UTC
a124cd810a2a43dc4fe6475cebbb948d3e7cf031
1 file changed
+2
lib/src/screens/exchange/widgets/exchange_card.dart
+2
@@ -247,6 +247,8 @@ class ExchangeCardState extends State<ExchangeCard> {
247
padding: EdgeInsets.only(top: 20),
248
child: AddressTextField(
249
controller: addressController,
250
+ placeholder: widget.hasRefundAddress
251
+ ? S.of(context).refund_address : null,
252
options: [
253
AddressTextFieldOption.paste,
254
AddressTextFieldOption.qrCode,