Update dependencies
This commit is contained in:
parent
d0a6e9179c
commit
76d59266e2
|
@ -193,7 +193,7 @@ class QRAddressState extends State<QRAddressWidget> {
|
|||
if (tapMessage != null) Text(tapMessage),
|
||||
Padding(padding: EdgeInsets.symmetric(vertical: 4)),
|
||||
GestureDetector(
|
||||
onTap: hasTAddr ? _onQRTap : null,
|
||||
onTap: _onQRTap,
|
||||
onLongPress: _onUpdateTAddr,
|
||||
child: RotatedBox(
|
||||
quarterTurns: 0,
|
||||
|
|
|
@ -123,14 +123,12 @@ class TxPlanPage extends StatelessWidget {
|
|||
await WarpApi.signAndBroadcast(active.coin, active.id, plan);
|
||||
}
|
||||
showSnackBar(S.current.txId(txid));
|
||||
if (settings.sound)
|
||||
await player.play(AssetSource("success.mp3"));
|
||||
if (settings.sound) await player.play(AssetSource("success.mp3"));
|
||||
active.setDraftRecipient(null);
|
||||
active.update();
|
||||
} on String catch (message) {
|
||||
showSnackBar(message, error: true);
|
||||
if (settings.sound)
|
||||
await player.play(AssetSource("fail.mp3"));
|
||||
if (settings.sound) await player.play(AssetSource("fail.mp3"));
|
||||
} finally {
|
||||
active.setBanner("");
|
||||
}
|
||||
|
|
|
@ -1 +1 @@
|
|||
Subproject commit 38ecd604e4ae244cd89dbf612de7eb715c80efcb
|
||||
Subproject commit 31b8f3613c0cf4afae3059b4df4f568fd8dccb41
|
|
@ -15,7 +15,7 @@ publish_to: 'none' # Remove this line if you wish to publish to pub.dev
|
|||
# In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion.
|
||||
# Read more about iOS versioning at
|
||||
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
|
||||
version: 1.4.0+438
|
||||
version: 1.4.0+439
|
||||
|
||||
environment:
|
||||
sdk: ">=2.12.0 <3.0.0"
|
||||
|
|
Loading…
Reference in New Issue