Update dependencies

This commit is contained in:
Hanh 2023-05-14 09:07:33 +10:00
parent d0a6e9179c
commit 76d59266e2
4 changed files with 5 additions and 7 deletions

View File

@ -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,

View File

@ -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

View File

@ -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"