Hide info alert for coin control.
M committed
Jul 22, 2021 at 17:30 UTC
800376b6b20cdf122b98af910768b84313117a5d
2 files changed
+22
-21
ios/Podfile.lock
+2
-1
@@ -290,5 +290,6 @@ SPEC CHECKSUMS:
290
url_launcher: 6fef411d543ceb26efce54b05a0a40bfd74cbbef
291
webview_flutter: 9f491a9b5a66f2573946a389b2677987b0ff8c0b
292
293
+PODFILE CHECKSUM: 82161cafcb98ddf3e6a0ff8149da3f656be3f1e3
294
294
-COCOAPODS: 1.10.1
295
+COCOAPODS: 1.9.3
lib/src/screens/unspent_coins/unspent_coins_list_page.dart
+20
-20
@@ -15,25 +15,25 @@ class UnspentCoinsListPage extends BasePage {
15
@override
16
String get title => S.current.unspent_coins_title;
17
18
- @override
19
- Widget trailing(BuildContext context) {
20
- final questionImage = Image.asset('assets/images/question_mark.png',
21
- color: Theme.of(context).primaryTextTheme.title.color);
22
-
23
- return SizedBox(
24
- height: 20.0,
25
- width: 20.0,
26
- child: ButtonTheme(
27
- minWidth: double.minPositive,
28
- child: FlatButton(
29
- highlightColor: Colors.transparent,
30
- splashColor: Colors.transparent,
31
- padding: EdgeInsets.all(0),
32
- onPressed: () => showUnspentCoinsAlert(context),
33
- child: questionImage),
34
- ),
35
- );
36
- }
18
+ //@override
19
+ //Widget trailing(BuildContext context) {
20
+ // final questionImage = Image.asset('assets/images/question_mark.png',
21
+ // color: Theme.of(context).primaryTextTheme.title.color);
22
+
23
+ // return SizedBox(
24
+ // height: 20.0,
25
+ // width: 20.0,
26
+ // child: ButtonTheme(
27
+ // minWidth: double.minPositive,
28
+ // child: FlatButton(
29
+ // highlightColor: Colors.transparent,
30
+ // splashColor: Colors.transparent,
31
+ // padding: EdgeInsets.all(0),
32
+ // onPressed: () => showUnspentCoinsAlert(context),
33
+ // child: questionImage),
34
+ // ),
35
+ // );
36
+ //}
37
38
final UnspentCoinsListViewModel unspentCoinsListViewModel;
39
@@ -64,7 +64,7 @@ class UnspentCoinsListFormState extends State<UnspentCoinsListForm> {
64
}
65
66
void afterLayout(dynamic _) {
67
- showUnspentCoinsAlert(context);
67
+ //showUnspentCoinsAlert(context);
68
}
69
70
@override