CAKE-304 | upgraded project to flutter 2.x.x, upgraded packages and resolved problems

OleksandrSobol committed Apr 2, 2021 at 20:43 UTC 0cd4bd46f74af8557e9f1162f43aa4697cd2e5b7
10 files changed +127 -135
lib/core/fiat_conversion_service.dart
+2 -1
@@ -16,7 +16,8 @@ Future<double> _fetchPrice(Map<String, dynamic> args) async {
16 try {
17 final fiatStringified = fiat.toString();
18 final uri =
19 - Uri.https(fiatApiAuthority, fiatApiPath, {'convert': fiatStringified});
19 + Uri.https(fiatApiAuthority, fiatApiPath,
20 + <String, String> {'convert': fiatStringified});
21 final response = await get(uri.toString());
22
23 if (response.statusCode != 200) {
lib/entities/transaction_history.dart
+1 -1
@@ -1,4 +1,4 @@
1 -import 'package:rxdart/rxdart.dart';
1 +import 'package:mobx/mobx.dart';
2 import 'package:cake_wallet/entities/transaction_info.dart';
3
4 abstract class TransactionHistory {
lib/entities/wallet.dart
+1 -1
@@ -1,4 +1,4 @@
1 -import 'package:rxdart/rxdart.dart';
1 +import 'package:mobx/mobx.dart';
2 import 'package:cake_wallet/entities/sync_status.dart';
3 import 'package:cake_wallet/entities/transaction_history.dart';
4 import 'package:cake_wallet/entities/wallet_type.dart';
lib/src/screens/auth/auth_page.dart
+1 -1
@@ -142,7 +142,7 @@ class AuthPageState extends State<AuthPage> {
142 : Container(),
143 backgroundColor: Theme.of(context).backgroundColor,
144 border: null),
145 - resizeToAvoidBottomPadding: false,
145 + resizeToAvoidBottomInset: false,
146 body: PinCode((pin, _) => widget.authViewModel.auth(password: pin),
147 (_) => null, widget.authViewModel.pinLength, false, _pinCodeKey));
148 }
lib/src/screens/base_page.dart
+2 -2
@@ -28,7 +28,7 @@ abstract class BasePage extends StatelessWidget {
28
29 Color get titleColor => null;
30
31 - bool get resizeToAvoidBottomPadding => true;
31 + bool get resizeToAvoidBottomInset => true;
32
33 bool get extendBodyBehindAppBar => false;
34
@@ -138,7 +138,7 @@ abstract class BasePage extends StatelessWidget {
138 final root = Scaffold(
139 key: _scaffoldKey,
140 backgroundColor: _backgroundColor,
141 - resizeToAvoidBottomPadding: resizeToAvoidBottomPadding,
141 + resizeToAvoidBottomInset: resizeToAvoidBottomInset,
142 extendBodyBehindAppBar: extendBodyBehindAppBar,
143 endDrawer: endDrawer,
144 appBar: appBar(context),
lib/src/screens/pin_code/pin_code_widget.dart
+1 -1
@@ -101,7 +101,7 @@ class PinCodeState<T extends PinCodeWidget> extends State<T> {
101
102 @override
103 Widget build(BuildContext context) => Scaffold(
104 - key: _key, body: body(context), resizeToAvoidBottomPadding: false);
104 + key: _key, body: body(context), resizeToAvoidBottomInset: false);
105
106 Widget body(BuildContext context) {
107 final deleteIconImage = Image.asset(
lib/src/screens/welcome/welcome_page.dart
+1 -1
@@ -16,7 +16,7 @@ class WelcomePage extends BasePage {
16 backgroundColor: Theme
17 .of(context)
18 .backgroundColor,
19 - resizeToAvoidBottomPadding: false,
19 + resizeToAvoidBottomInset: false,
20 body: body(context));
21 }
22
lib/utils/show_pop_up.dart
+2 -4
@@ -7,8 +7,7 @@ Future<T> showPopUp<T>({
7 Color barrierColor,
8 bool useSafeArea = false,
9 bool useRootNavigator = true,
10 - RouteSettings routeSettings,
11 - Widget child,
10 + RouteSettings routeSettings
11 }) {
12 return showDialog<T>(
13 context: context,
@@ -17,6 +16,5 @@ Future<T> showPopUp<T>({
16 barrierColor: barrierColor,
17 useSafeArea: useSafeArea,
18 useRootNavigator: useRootNavigator,
20 - routeSettings: routeSettings,
21 - child: child);
19 + routeSettings: routeSettings);
20 }
pubspec.lock
+96 -103
@@ -7,14 +7,14 @@ packages:
7 name: _fe_analyzer_shared
8 url: "https://pub.dartlang.org"
9 source: hosted
10 - version: "12.0.0"
10 + version: "14.0.0"
11 analyzer:
12 dependency: transitive
13 description:
14 name: analyzer
15 url: "https://pub.dartlang.org"
16 source: hosted
17 - version: "0.40.6"
17 + version: "0.41.2"
18 archive:
19 dependency: "direct main"
20 description:
@@ -42,7 +42,7 @@ packages:
42 name: async
43 url: "https://pub.dartlang.org"
44 source: hosted
45 - version: "2.5.0-nullsafety.1"
45 + version: "2.5.0"
46 auto_size_text:
47 dependency: "direct main"
48 description:
@@ -63,7 +63,7 @@ packages:
63 name: basic_utils
64 url: "https://pub.dartlang.org"
65 source: hosted
66 - version: "1.9.3"
66 + version: "2.0.3"
67 bech32:
68 dependency: transitive
69 description:
@@ -91,14 +91,14 @@ packages:
91 name: bitcoin_flutter
92 url: "https://pub.dartlang.org"
93 source: hosted
94 - version: "2.0.1"
94 + version: "2.0.2"
95 boolean_selector:
96 dependency: transitive
97 description:
98 name: boolean_selector
99 url: "https://pub.dartlang.org"
100 source: hosted
101 - version: "2.1.0-nullsafety.1"
101 + version: "2.1.0"
102 bs58check:
103 dependency: transitive
104 description:
@@ -112,42 +112,42 @@ packages:
112 name: build
113 url: "https://pub.dartlang.org"
114 source: hosted
115 - version: "1.5.0"
115 + version: "1.6.2"
116 build_config:
117 dependency: transitive
118 description:
119 name: build_config
120 url: "https://pub.dartlang.org"
121 source: hosted
122 - version: "0.4.2"
122 + version: "0.4.6"
123 build_daemon:
124 dependency: transitive
125 description:
126 name: build_daemon
127 url: "https://pub.dartlang.org"
128 source: hosted
129 - version: "2.1.4"
129 + version: "2.1.10"
130 build_resolvers:
131 dependency: "direct dev"
132 description:
133 name: build_resolvers
134 url: "https://pub.dartlang.org"
135 source: hosted
136 - version: "1.4.3"
136 + version: "1.5.3"
137 build_runner:
138 dependency: "direct dev"
139 description:
140 name: build_runner
141 url: "https://pub.dartlang.org"
142 source: hosted
143 - version: "1.10.4"
143 + version: "1.11.5"
144 build_runner_core:
145 dependency: transitive
146 description:
147 name: build_runner_core
148 url: "https://pub.dartlang.org"
149 source: hosted
150 - version: "6.0.3"
150 + version: "6.1.10"
151 built_collection:
152 dependency: transitive
153 description:
@@ -168,77 +168,77 @@ packages:
168 name: characters
169 url: "https://pub.dartlang.org"
170 source: hosted
171 - version: "1.1.0-nullsafety.3"
171 + version: "1.1.0"
172 charcode:
173 dependency: transitive
174 description:
175 name: charcode
176 url: "https://pub.dartlang.org"
177 source: hosted
178 - version: "1.2.0-nullsafety.1"
178 + version: "1.2.0"
179 checked_yaml:
180 dependency: transitive
181 description:
182 name: checked_yaml
183 url: "https://pub.dartlang.org"
184 source: hosted
185 - version: "1.0.2"
185 + version: "1.0.4"
186 cli_util:
187 dependency: transitive
188 description:
189 name: cli_util
190 url: "https://pub.dartlang.org"
191 source: hosted
192 - version: "0.2.0"
192 + version: "0.3.0"
193 clock:
194 dependency: transitive
195 description:
196 name: clock
197 url: "https://pub.dartlang.org"
198 source: hosted
199 - version: "1.1.0-nullsafety.1"
199 + version: "1.1.0"
200 code_builder:
201 dependency: transitive
202 description:
203 name: code_builder
204 url: "https://pub.dartlang.org"
205 source: hosted
206 - version: "3.5.0"
206 + version: "3.7.0"
207 collection:
208 dependency: transitive
209 description:
210 name: collection
211 url: "https://pub.dartlang.org"
212 source: hosted
213 - version: "1.15.0-nullsafety.3"
213 + version: "1.15.0"
214 connectivity:
215 dependency: "direct main"
216 description:
217 name: connectivity
218 url: "https://pub.dartlang.org"
219 source: hosted
220 - version: "0.4.9+5"
220 + version: "3.0.3"
221 connectivity_for_web:
222 dependency: transitive
223 description:
224 name: connectivity_for_web
225 url: "https://pub.dartlang.org"
226 source: hosted
227 - version: "0.3.1+4"
227 + version: "0.4.0"
228 connectivity_macos:
229 dependency: transitive
230 description:
231 name: connectivity_macos
232 url: "https://pub.dartlang.org"
233 source: hosted
234 - version: "0.1.0+7"
234 + version: "0.2.0"
235 connectivity_platform_interface:
236 dependency: transitive
237 description:
238 name: connectivity_platform_interface
239 url: "https://pub.dartlang.org"
240 source: hosted
241 - version: "1.0.6"
241 + version: "2.0.0"
242 convert:
243 dependency: transitive
244 description:
@@ -266,7 +266,7 @@ packages:
266 name: cupertino_icons
267 url: "https://pub.dartlang.org"
268 source: hosted
269 - version: "0.1.3"
269 + version: "1.0.2"
270 cw_monero:
271 dependency: "direct main"
272 description:
@@ -280,7 +280,7 @@ packages:
280 name: dart_style
281 url: "https://pub.dartlang.org"
282 source: hosted
283 - version: "1.3.9"
283 + version: "1.3.12"
284 dartx:
285 dependency: transitive
286 description:
@@ -294,28 +294,28 @@ packages:
294 name: date_range_picker
295 url: "https://pub.dartlang.org"
296 source: hosted
297 - version: "1.0.6"
297 + version: "1.0.7"
298 devicelocale:
299 dependency: "direct main"
300 description:
301 name: devicelocale
302 url: "https://pub.dartlang.org"
303 source: hosted
304 - version: "0.2.3"
304 + version: "0.4.1"
305 dio:
306 dependency: "direct main"
307 description:
308 name: dio
309 url: "https://pub.dartlang.org"
310 source: hosted
311 - version: "3.0.7"
311 + version: "3.0.10"
312 dotted_border:
313 dependency: "direct main"
314 description:
315 name: dotted_border
316 url: "https://pub.dartlang.org"
317 source: hosted
318 - version: "1.0.6"
318 + version: "1.0.7"
319 encrypt:
320 dependency: "direct main"
321 description:
@@ -336,7 +336,7 @@ packages:
336 name: fake_async
337 url: "https://pub.dartlang.org"
338 source: hosted
339 - version: "1.2.0-nullsafety.1"
339 + version: "1.2.0"
340 ffi:
341 dependency: transitive
342 description:
@@ -350,14 +350,14 @@ packages:
350 name: file
351 url: "https://pub.dartlang.org"
352 source: hosted
353 - version: "5.2.1"
353 + version: "6.1.0"
354 file_picker:
355 dependency: "direct main"
356 description:
357 name: file_picker
358 url: "https://pub.dartlang.org"
359 source: hosted
360 - version: "2.1.4"
360 + version: "3.0.0-nullsafety.2"
361 fixnum:
362 dependency: transitive
363 description:
@@ -390,7 +390,7 @@ packages:
390 name: flutter_launcher_icons
391 url: "https://pub.dartlang.org"
392 source: hosted
393 - version: "0.7.5"
393 + version: "0.8.1"
394 flutter_localizations:
395 dependency: "direct main"
396 description: flutter
@@ -409,7 +409,7 @@ packages:
409 name: flutter_plugin_android_lifecycle
410 url: "https://pub.dartlang.org"
411 source: hosted
412 - version: "1.0.11"
412 + version: "2.0.1"
413 flutter_secure_storage:
414 dependency: "direct main"
415 description:
@@ -432,7 +432,7 @@ packages:
432 name: flutter_spinkit
433 url: "https://pub.dartlang.org"
434 source: hosted
435 - version: "4.1.2+1"
435 + version: "5.0.0"
436 flutter_test:
437 dependency: "direct dev"
438 description: flutter
@@ -449,14 +449,14 @@ packages:
449 name: get_it
450 url: "https://pub.dartlang.org"
451 source: hosted
452 - version: "4.0.4"
452 + version: "6.0.0"
453 glob:
454 dependency: transitive
455 description:
456 name: glob
457 url: "https://pub.dartlang.org"
458 source: hosted
459 - version: "1.2.0"
459 + version: "2.0.1"
460 graphs:
461 dependency: transitive
462 description:
@@ -526,42 +526,42 @@ packages:
526 name: intl
527 url: "https://pub.dartlang.org"
528 source: hosted
529 - version: "0.16.1"
529 + version: "0.17.0"
530 io:
531 dependency: transitive
532 description:
533 name: io
534 url: "https://pub.dartlang.org"
535 source: hosted
536 - version: "0.3.4"
536 + version: "0.3.5"
537 js:
538 dependency: transitive
539 description:
540 name: js
541 url: "https://pub.dartlang.org"
542 source: hosted
543 - version: "0.6.2"
543 + version: "0.6.3"
544 json_annotation:
545 dependency: transitive
546 description:
547 name: json_annotation
548 url: "https://pub.dartlang.org"
549 source: hosted
550 - version: "3.1.0"
550 + version: "3.1.1"
551 keyboard_actions:
552 dependency: "direct main"
553 description:
554 name: keyboard_actions
555 url: "https://pub.dartlang.org"
556 source: hosted
557 - version: "3.3.1+1"
557 + version: "3.4.0"
558 local_auth:
559 dependency: "direct main"
560 description:
561 name: local_auth
562 url: "https://pub.dartlang.org"
563 source: hosted
564 - version: "0.6.3+4"
564 + version: "1.1.1"
565 logging:
566 dependency: transitive
567 description:
@@ -575,21 +575,21 @@ packages:
575 name: matcher
576 url: "https://pub.dartlang.org"
577 source: hosted
578 - version: "0.12.10-nullsafety.1"
578 + version: "0.12.10"
579 meta:
580 dependency: transitive
581 description:
582 name: meta
583 url: "https://pub.dartlang.org"
584 source: hosted
585 - version: "1.3.0-nullsafety.3"
585 + version: "1.3.0"
586 mime:
587 dependency: transitive
588 description:
589 name: mime
590 url: "https://pub.dartlang.org"
591 source: hosted
592 - version: "0.9.7"
592 + version: "1.0.0"
593 mobx:
594 dependency: "direct main"
595 description:
@@ -604,20 +604,13 @@ packages:
604 url: "https://pub.dartlang.org"
605 source: hosted
606 version: "1.1.2"
607 - node_interop:
608 - dependency: transitive
609 - description:
610 - name: node_interop
611 - url: "https://pub.dartlang.org"
612 - source: hosted
613 - version: "1.2.0"
614 - node_io:
607 + nested:
608 dependency: transitive
609 description:
617 - name: node_io
610 + name: nested
611 url: "https://pub.dartlang.org"
612 source: hosted
620 - version: "1.1.1"
613 + version: "1.0.0"
614 package_config:
615 dependency: transitive
616 description:
@@ -631,7 +624,7 @@ packages:
624 name: package_info
625 url: "https://pub.dartlang.org"
626 source: hosted
634 - version: "0.4.3+2"
627 + version: "2.0.0"
628 password:
629 dependency: "direct main"
630 description:
@@ -645,7 +638,7 @@ packages:
638 name: path
639 url: "https://pub.dartlang.org"
640 source: hosted
648 - version: "1.8.0-nullsafety.1"
641 + version: "1.8.0"
642 path_drawing:
643 dependency: transitive
644 description:
@@ -666,7 +659,7 @@ packages:
659 name: path_provider
660 url: "https://pub.dartlang.org"
661 source: hosted
669 - version: "1.6.24"
662 + version: "1.6.28"
663 path_provider_linux:
664 dependency: transitive
665 description:
@@ -680,7 +673,7 @@ packages:
673 name: path_provider_macos
674 url: "https://pub.dartlang.org"
675 source: hosted
683 - version: "0.0.4+6"
676 + version: "0.0.4+8"
677 path_provider_platform_interface:
678 dependency: transitive
679 description:
@@ -701,21 +694,21 @@ packages:
694 name: pedantic
695 url: "https://pub.dartlang.org"
696 source: hosted
704 - version: "1.9.2"
697 + version: "1.11.0"
698 permission_handler:
699 dependency: "direct main"
700 description:
701 name: permission_handler
702 url: "https://pub.dartlang.org"
703 source: hosted
711 - version: "5.0.1+1"
704 + version: "5.1.0+2"
705 permission_handler_platform_interface:
706 dependency: transitive
707 description:
708 name: permission_handler_platform_interface
709 url: "https://pub.dartlang.org"
710 source: hosted
718 - version: "2.0.1"
711 + version: "2.0.2"
712 petitparser:
713 dependency: transitive
714 description:
@@ -729,14 +722,14 @@ packages:
722 name: platform
723 url: "https://pub.dartlang.org"
724 source: hosted
732 - version: "2.2.1"
725 + version: "3.0.0"
726 plugin_platform_interface:
727 dependency: transitive
728 description:
729 name: plugin_platform_interface
730 url: "https://pub.dartlang.org"
731 source: hosted
739 - version: "1.0.3"
732 + version: "1.1.0-nullsafety.2"
733 pointycastle:
734 dependency: transitive
735 description:
@@ -750,49 +743,49 @@ packages:
743 name: pool
744 url: "https://pub.dartlang.org"
745 source: hosted
753 - version: "1.4.0"
746 + version: "1.5.0"
747 process:
748 dependency: transitive
749 description:
750 name: process
751 url: "https://pub.dartlang.org"
752 source: hosted
760 - version: "3.0.13"
753 + version: "4.2.1"
754 protobuf:
755 dependency: transitive
756 description:
757 name: protobuf
758 url: "https://pub.dartlang.org"
759 source: hosted
767 - version: "1.1.0"
760 + version: "1.1.3"
761 provider:
762 dependency: "direct main"
763 description:
764 name: provider
765 url: "https://pub.dartlang.org"
766 source: hosted
774 - version: "3.2.0"
767 + version: "5.0.0"
768 pub_semver:
769 dependency: transitive
770 description:
771 name: pub_semver
772 url: "https://pub.dartlang.org"
773 source: hosted
781 - version: "1.4.4"
774 + version: "2.0.0"
775 pubspec_parse:
776 dependency: transitive
777 description:
778 name: pubspec_parse
779 url: "https://pub.dartlang.org"
780 source: hosted
788 - version: "0.1.5"
781 + version: "0.1.8"
782 qr:
783 dependency: "direct main"
784 description:
785 name: qr
786 url: "https://pub.dartlang.org"
787 source: hosted
795 - version: "1.3.0"
788 + version: "2.0.0"
789 quiver:
790 dependency: transitive
791 description:
@@ -806,14 +799,14 @@ packages:
799 name: rxdart
800 url: "https://pub.dartlang.org"
801 source: hosted
809 - version: "0.22.6"
802 + version: "0.26.0"
803 share:
804 dependency: "direct main"
805 description:
806 name: share
807 url: "https://pub.dartlang.org"
808 source: hosted
816 - version: "0.6.5+4"
809 + version: "2.0.1"
810 shared_preferences:
811 dependency: "direct main"
812 description:
@@ -855,7 +848,7 @@ packages:
848 name: shared_preferences_windows
849 url: "https://pub.dartlang.org"
850 source: hosted
858 - version: "0.0.1+3"
851 + version: "0.0.2+3"
852 shelf:
853 dependency: transitive
854 description:
@@ -869,7 +862,7 @@ packages:
862 name: shelf_web_socket
863 url: "https://pub.dartlang.org"
864 source: hosted
872 - version: "0.2.3"
865 + version: "0.2.4+1"
866 sky_engine:
867 dependency: transitive
868 description: flutter
@@ -881,175 +874,175 @@ packages:
874 name: smooth_page_indicator
875 url: "https://pub.dartlang.org"
876 source: hosted
884 - version: "0.2.0"
877 + version: "0.2.3"
878 source_gen:
879 dependency: transitive
880 description:
881 name: source_gen
882 url: "https://pub.dartlang.org"
883 source: hosted
891 - version: "0.9.8"
884 + version: "0.9.10+3"
885 source_span:
886 dependency: transitive
887 description:
888 name: source_span
889 url: "https://pub.dartlang.org"
890 source: hosted
898 - version: "1.8.0-nullsafety.2"
891 + version: "1.8.0"
892 stack_trace:
893 dependency: transitive
894 description:
895 name: stack_trace
896 url: "https://pub.dartlang.org"
897 source: hosted
905 - version: "1.10.0-nullsafety.1"
898 + version: "1.10.0"
899 stream_channel:
900 dependency: transitive
901 description:
902 name: stream_channel
903 url: "https://pub.dartlang.org"
904 source: hosted
912 - version: "2.1.0-nullsafety.1"
905 + version: "2.1.0"
906 stream_transform:
907 dependency: transitive
908 description:
909 name: stream_transform
910 url: "https://pub.dartlang.org"
911 source: hosted
919 - version: "1.2.0"
912 + version: "2.0.0"
913 string_scanner:
914 dependency: transitive
915 description:
916 name: string_scanner
917 url: "https://pub.dartlang.org"
918 source: hosted
926 - version: "1.1.0-nullsafety.1"
919 + version: "1.1.0"
920 term_glyph:
921 dependency: transitive
922 description:
923 name: term_glyph
924 url: "https://pub.dartlang.org"
925 source: hosted
933 - version: "1.2.0-nullsafety.1"
926 + version: "1.2.0"
927 test_api:
928 dependency: transitive
929 description:
930 name: test_api
931 url: "https://pub.dartlang.org"
932 source: hosted
940 - version: "0.2.19-nullsafety.2"
933 + version: "0.2.19"
934 time:
935 dependency: transitive
936 description:
937 name: time
938 url: "https://pub.dartlang.org"
939 source: hosted
947 - version: "1.3.0"
940 + version: "1.4.1"
941 timing:
942 dependency: transitive
943 description:
944 name: timing
945 url: "https://pub.dartlang.org"
946 source: hosted
954 - version: "0.1.1+2"
947 + version: "0.1.1+3"
948 typed_data:
949 dependency: transitive
950 description:
951 name: typed_data
952 url: "https://pub.dartlang.org"
953 source: hosted
961 - version: "1.3.0-nullsafety.3"
954 + version: "1.3.0"
955 unorm_dart:
956 dependency: "direct main"
957 description:
958 name: unorm_dart
959 url: "https://pub.dartlang.org"
960 source: hosted
968 - version: "0.1.2"
961 + version: "0.2.0"
962 url_launcher:
963 dependency: "direct main"
964 description:
965 name: url_launcher
966 url: "https://pub.dartlang.org"
967 source: hosted
975 - version: "5.7.10"
968 + version: "6.0.3"
969 url_launcher_linux:
970 dependency: transitive
971 description:
972 name: url_launcher_linux
973 url: "https://pub.dartlang.org"
974 source: hosted
982 - version: "0.0.1+4"
975 + version: "2.0.0"
976 url_launcher_macos:
977 dependency: transitive
978 description:
979 name: url_launcher_macos
980 url: "https://pub.dartlang.org"
981 source: hosted
989 - version: "0.0.1+9"
982 + version: "2.0.0"
983 url_launcher_platform_interface:
984 dependency: transitive
985 description:
986 name: url_launcher_platform_interface
987 url: "https://pub.dartlang.org"
988 source: hosted
996 - version: "1.0.9"
989 + version: "2.0.1"
990 url_launcher_web:
991 dependency: transitive
992 description:
993 name: url_launcher_web
994 url: "https://pub.dartlang.org"
995 source: hosted
1003 - version: "0.1.5+1"
996 + version: "2.0.0"
997 url_launcher_windows:
998 dependency: transitive
999 description:
1000 name: url_launcher_windows
1001 url: "https://pub.dartlang.org"
1002 source: hosted
1010 - version: "0.0.1+3"
1003 + version: "2.0.0"
1004 uuid:
1005 dependency: "direct main"
1006 description:
1007 name: uuid
1008 url: "https://pub.dartlang.org"
1009 source: hosted
1017 - version: "2.0.1"
1010 + version: "2.2.2"
1011 vector_math:
1012 dependency: transitive
1013 description:
1014 name: vector_math
1015 url: "https://pub.dartlang.org"
1016 source: hosted
1024 - version: "2.1.0-nullsafety.3"
1017 + version: "2.1.0"
1018 watcher:
1019 dependency: transitive
1020 description:
1021 name: watcher
1022 url: "https://pub.dartlang.org"
1023 source: hosted
1031 - version: "0.9.7+15"
1024 + version: "1.0.0"
1025 web_socket_channel:
1026 dependency: transitive
1027 description:
1028 name: web_socket_channel
1029 url: "https://pub.dartlang.org"
1030 source: hosted
1038 - version: "1.1.0"
1031 + version: "1.2.0"
1032 webview_flutter:
1033 dependency: "direct main"
1034 description:
1035 name: webview_flutter
1036 url: "https://pub.dartlang.org"
1037 source: hosted
1045 - version: "1.0.7"
1038 + version: "2.0.2"
1039 win32:
1040 dependency: transitive
1041 description:
1042 name: win32
1043 url: "https://pub.dartlang.org"
1044 source: hosted
1052 - version: "1.7.4"
1045 + version: "1.7.4+1"
1046 xdg_directories:
1047 dependency: transitive
1048 description:
@@ -1072,5 +1065,5 @@ packages:
1065 source: hosted
1066 version: "2.2.1"
1067 sdks:
1075 - dart: ">=2.10.0 <2.11.0"
1076 - flutter: ">=1.22.0 <2.0.0"
1068 + dart: ">=2.12.0 <3.0.0"
1069 + flutter: ">=2.0.0"
pubspec.yaml
+20 -20
@@ -22,18 +22,18 @@ dependencies:
22 flutter_localizations:
23 sdk: flutter
24 flutter_cupertino_localizations: ^1.0.1
25 - intl: ^0.16.0
26 - url_launcher: ^5.1.2
27 - qr: ^1.2.0
28 - uuid: 2.0.1
25 + intl: ^0.17.0
26 + url_launcher: ^6.0.3
27 + qr: ^2.0.0
28 + uuid: ^2.2.2
29 shared_preferences: ^0.5.3+4
30 flutter_secure_storage:
31 git:
32 url: https://github.com/cake-tech/flutter_secure_storage.git
33 ref: cake
34 version: 3.3.57
35 - provider: ^3.1.0
36 - rxdart: ^0.22.2
35 + provider: ^5.0.0
36 + rxdart: ^0.26.0
37 yaml: ^2.1.16
38 barcode_scan: any
39 http: ^0.12.0+2
@@ -41,39 +41,39 @@ dependencies:
41 mobx: ^1.2.1+2
42 flutter_mobx: ^1.1.0+2
43 flutter_slidable: ^0.5.3
44 - share: ^0.6.2+1
44 + share: ^2.0.1
45 esys_flutter_share: ^1.0.2
46 date_range_picker: ^1.0.6
47 - dio: 3.0.7
47 + dio: ^3.0.10
48 cw_monero:
49 path: ./cw_monero
50 hive: ^1.4.4+1
51 hive_flutter: ^0.3.1
52 - local_auth: ^0.6.1
53 - package_info: ^0.4.0+13
54 - devicelocale: ^0.2.1
52 + local_auth: ^1.1.1
53 + package_info: ^2.0.0
54 + devicelocale: ^0.4.1
55 auto_size_text: ^2.1.0
56 dotted_border: ^1.0.5
57 smooth_page_indicator: ^0.2.0
58 - webview_flutter: ^1.0.7
59 - flutter_spinkit: ^4.1.2
58 + webview_flutter: ^2.0.2
59 + flutter_spinkit: ^5.0.0
60
61 # The following adds the Cupertino Icons font to your application.
62 # Use with the CupertinoIcons class for iOS style icons.
63 - cupertino_icons: ^0.1.2
63 + cupertino_icons: ^1.0.2
64 encrypt: ^4.0.0
65 crypto: ^2.1.5
66 password: ^1.0.0
67 - basic_utils: ^1.0.8
67 + basic_utils: ^2.0.3
68 bitcoin_flutter: ^2.0.0
69 - get_it: ^4.0.2
70 - connectivity: ^0.4.9+2
69 + get_it: ^6.0.0
70 + connectivity: ^3.0.3
71 keyboard_actions: ^3.3.0
72 flushbar: ^1.10.4
73 archive: ^2.0.13
74 cryptography: ^1.4.0
75 - file_picker: ^2.1.4
76 - unorm_dart: ^0.1.2
75 + file_picker: ^3.0.0-nullsafety.2
76 + unorm_dart: ^0.2.0
77 permission_handler: ^5.0.1+1
78
79 dev_dependencies:
@@ -83,7 +83,7 @@ dev_dependencies:
83 build_resolvers: ^1.3.10
84 mobx_codegen: ^1.1.0+1
85 hive_generator: ^0.8.1
86 - flutter_launcher_icons: ^0.7.4
86 + flutter_launcher_icons: ^0.8.1
87 pedantic: ^1.8.0
88
89 flutter_icons: