mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-06-28 20:39:51 +00:00
CWA-198 | fixed width of the copy information raw
This commit is contained in:
parent
bd5a4a9f03
commit
f0ea28982e
1 changed files with 3 additions and 3 deletions
|
@ -50,7 +50,7 @@ class WalletCardState extends State<WalletCard> {
|
||||||
cardWidth = screenWidth;
|
cardWidth = screenWidth;
|
||||||
opacity = 1;
|
opacity = 1;
|
||||||
});
|
});
|
||||||
Timer(Duration(milliseconds: 350), () =>
|
Timer(Duration(milliseconds: 500), () =>
|
||||||
setState(() => isDraw = true)
|
setState(() => isDraw = true)
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
@ -330,7 +330,7 @@ class WalletCardState extends State<WalletCard> {
|
||||||
final walletStore = Provider.of<WalletStore>(context);
|
final walletStore = Provider.of<WalletStore>(context);
|
||||||
final rightArrow = Image.asset('assets/images/right_arrow.png');
|
final rightArrow = Image.asset('assets/images/right_arrow.png');
|
||||||
double messageBoxHeight = 0;
|
double messageBoxHeight = 0;
|
||||||
double messageBoxWidth = cardWidth - 30;
|
double messageBoxWidth = cardWidth - 10;
|
||||||
|
|
||||||
return Observer(
|
return Observer(
|
||||||
key: _addressObserverKey,
|
key: _addressObserverKey,
|
||||||
|
@ -385,7 +385,7 @@ class WalletCardState extends State<WalletCard> {
|
||||||
try {
|
try {
|
||||||
_addressObserverKey.currentState.setState(() {
|
_addressObserverKey.currentState.setState(() {
|
||||||
messageBoxHeight = 0;
|
messageBoxHeight = 0;
|
||||||
messageBoxWidth = cardWidth - 30;
|
messageBoxWidth = cardWidth - 10;
|
||||||
});
|
});
|
||||||
} catch(e) {
|
} catch(e) {
|
||||||
print('${e.toString()}');
|
print('${e.toString()}');
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue