CWA-198 | fixed width of the copy information raw

Oleksandr Sobol committed Apr 30, 2020 at 23:21 UTC f0ea28982eb7549768be14948488b61ab44c49e8
1 file changed +3 -3
lib/src/screens/dashboard/widgets/wallet_card.dart
+3 -3
@@ -50,7 +50,7 @@ class WalletCardState extends State<WalletCard> {
50 cardWidth = screenWidth;
51 opacity = 1;
52 });
53 - Timer(Duration(milliseconds: 350), () =>
53 + Timer(Duration(milliseconds: 500), () =>
54 setState(() => isDraw = true)
55 );
56 }
@@ -330,7 +330,7 @@ class WalletCardState extends State<WalletCard> {
330 final walletStore = Provider.of<WalletStore>(context);
331 final rightArrow = Image.asset('assets/images/right_arrow.png');
332 double messageBoxHeight = 0;
333 - double messageBoxWidth = cardWidth - 30;
333 + double messageBoxWidth = cardWidth - 10;
334
335 return Observer(
336 key: _addressObserverKey,
@@ -385,7 +385,7 @@ class WalletCardState extends State<WalletCard> {
385 try {
386 _addressObserverKey.currentState.setState(() {
387 messageBoxHeight = 0;
388 - messageBoxWidth = cardWidth - 30;
388 + messageBoxWidth = cardWidth - 10;
389 });
390 } catch(e) {
391 print('${e.toString()}');