minor fixes [skip ci]

OmarHatem committed Nov 24, 2025 at 14:46 UTC f0524bcef146e2977224406136b603b20c65e2ba
3 files changed +46 -1
ios/Podfile.lock
+38
@@ -99,6 +99,34 @@ PODS:
99 - FlutterMacOS
100 - sp_scanner (0.0.1):
101 - Flutter
102 + - sqflite_darwin (0.0.4):
103 + - Flutter
104 + - FlutterMacOS
105 + - sqlite3 (3.50.4):
106 + - sqlite3/common (= 3.50.4)
107 + - sqlite3/common (3.50.4)
108 + - sqlite3/dbstatvtab (3.50.4):
109 + - sqlite3/common
110 + - sqlite3/fts5 (3.50.4):
111 + - sqlite3/common
112 + - sqlite3/math (3.50.4):
113 + - sqlite3/common
114 + - sqlite3/perf-threadsafe (3.50.4):
115 + - sqlite3/common
116 + - sqlite3/rtree (3.50.4):
117 + - sqlite3/common
118 + - sqlite3/session (3.50.4):
119 + - sqlite3/common
120 + - sqlite3_flutter_libs (0.0.1):
121 + - Flutter
122 + - FlutterMacOS
123 + - sqlite3 (~> 3.50.4)
124 + - sqlite3/dbstatvtab
125 + - sqlite3/fts5
126 + - sqlite3/math
127 + - sqlite3/perf-threadsafe
128 + - sqlite3/rtree
129 + - sqlite3/session
130 - SwiftyGif (5.4.5)
131 - torch_dart (0.0.1):
132 - Flutter
@@ -144,6 +172,8 @@ DEPENDENCIES:
172 - share_plus (from `.symlinks/plugins/share_plus/ios`)
173 - shared_preferences_foundation (from `.symlinks/plugins/shared_preferences_foundation/darwin`)
174 - sp_scanner (from `.symlinks/plugins/sp_scanner/ios`)
175 + - sqflite_darwin (from `.symlinks/plugins/sqflite_darwin/darwin`)
176 + - sqlite3_flutter_libs (from `.symlinks/plugins/sqlite3_flutter_libs/darwin`)
177 - torch_dart (from `.symlinks/plugins/torch_dart/ios`)
178 - uni_links (from `.symlinks/plugins/uni_links/ios`)
179 - universal_ble (from `.symlinks/plugins/universal_ble/darwin`)
@@ -157,6 +187,7 @@ SPEC REPOS:
187 - DKPhotoGallery
188 - OrderedSet
189 - SDWebImage
190 + - sqlite3
191 - SwiftyGif
192 - YttriumWrapper
193
@@ -219,6 +250,10 @@ EXTERNAL SOURCES:
250 :path: ".symlinks/plugins/shared_preferences_foundation/darwin"
251 sp_scanner:
252 :path: ".symlinks/plugins/sp_scanner/ios"
253 + sqflite_darwin:
254 + :path: ".symlinks/plugins/sqflite_darwin/darwin"
255 + sqlite3_flutter_libs:
256 + :path: ".symlinks/plugins/sqlite3_flutter_libs/darwin"
257 torch_dart:
258 :path: ".symlinks/plugins/torch_dart/ios"
259 uni_links:
@@ -265,6 +300,9 @@ SPEC CHECKSUMS:
300 share_plus: 8b6f8b3447e494cca5317c8c3073de39b3600d1f
301 shared_preferences_foundation: fcdcbc04712aee1108ac7fda236f363274528f78
302 sp_scanner: eaa617fa827396b967116b7f1f43549ca62e9a12
303 + sqflite_darwin: 5a7236e3b501866c1c9befc6771dfd73ffb8702d
304 + sqlite3: 73513155ec6979715d3904ef53a8d68892d4032b
305 + sqlite3_flutter_libs: 86f82662868ee26ff3451f73cac9c5fc2a1f57fa
306 SwiftyGif: 706c60cf65fa2bc5ee0313beece843c8eb8194d4
307 torch_dart: d2cf778332cc6e6a3b362dcf45e4dde52bc34e35
308 uni_links: d97da20c7701486ba192624d99bffaaffcfc298a
lib/src/screens/nano/nano_change_rep_page.dart
-1
@@ -194,7 +194,6 @@ class NanoChangeRepPage extends BasePage {
194 buttonText: S.of(context).ok,
195 buttonAction: () => Navigator.pop(context));
196 });
197 - throw e;
197 }
198 }
199 }
lib/src/screens/send/widgets/send_card.dart
+8
@@ -195,6 +195,10 @@ class SendCardState extends State<SendCard> with AutomaticKeepAliveClientMixin<S
195 PaymentRequest paymentRequest,
196 PaymentFlowResult result,
197 ) async {
198 + if (!context.mounted) {
199 + return;
200 + }
201 +
202 await showModalBottomSheet<void>(
203 context: context,
204 isDismissible: true,
@@ -228,6 +232,10 @@ class SendCardState extends State<SendCard> with AutomaticKeepAliveClientMixin<S
232 WalletSwitcherViewModel walletSwitcherViewModel,
233 PaymentRequest paymentRequest,
234 ) async {
235 + if (!context.mounted) {
236 + return;
237 + }
238 +
239 await showModalBottomSheet<void>(
240 context: context,
241 isDismissible: true,