diff --git a/ios/Podfile.lock b/ios/Podfile.lock index 4be2c24bc..cfd17c255 100644 --- a/ios/Podfile.lock +++ b/ios/Podfile.lock @@ -290,5 +290,6 @@ SPEC CHECKSUMS: url_launcher: 6fef411d543ceb26efce54b05a0a40bfd74cbbef webview_flutter: 9f491a9b5a66f2573946a389b2677987b0ff8c0b +PODFILE CHECKSUM: 82161cafcb98ddf3e6a0ff8149da3f656be3f1e3 -COCOAPODS: 1.10.1 +COCOAPODS: 1.9.3 diff --git a/lib/src/screens/unspent_coins/unspent_coins_list_page.dart b/lib/src/screens/unspent_coins/unspent_coins_list_page.dart index 55b283b7c..074979eb7 100644 --- a/lib/src/screens/unspent_coins/unspent_coins_list_page.dart +++ b/lib/src/screens/unspent_coins/unspent_coins_list_page.dart @@ -15,25 +15,25 @@ class UnspentCoinsListPage extends BasePage { @override String get title => S.current.unspent_coins_title; - @override - Widget trailing(BuildContext context) { - final questionImage = Image.asset('assets/images/question_mark.png', - color: Theme.of(context).primaryTextTheme.title.color); + //@override + //Widget trailing(BuildContext context) { + // final questionImage = Image.asset('assets/images/question_mark.png', + // color: Theme.of(context).primaryTextTheme.title.color); - return SizedBox( - height: 20.0, - width: 20.0, - child: ButtonTheme( - minWidth: double.minPositive, - child: FlatButton( - highlightColor: Colors.transparent, - splashColor: Colors.transparent, - padding: EdgeInsets.all(0), - onPressed: () => showUnspentCoinsAlert(context), - child: questionImage), - ), - ); - } + // return SizedBox( + // height: 20.0, + // width: 20.0, + // child: ButtonTheme( + // minWidth: double.minPositive, + // child: FlatButton( + // highlightColor: Colors.transparent, + // splashColor: Colors.transparent, + // padding: EdgeInsets.all(0), + // onPressed: () => showUnspentCoinsAlert(context), + // child: questionImage), + // ), + // ); + //} final UnspentCoinsListViewModel unspentCoinsListViewModel; @@ -64,7 +64,7 @@ class UnspentCoinsListFormState extends State { } void afterLayout(dynamic _) { - showUnspentCoinsAlert(context); + //showUnspentCoinsAlert(context); } @override