mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-03-12 09:32:33 +00:00
Hide info alert for coin control.
This commit is contained in:
parent
57bd71dce0
commit
800376b6b2
2 changed files with 21 additions and 20 deletions
|
@ -290,5 +290,6 @@ SPEC CHECKSUMS:
|
||||||
url_launcher: 6fef411d543ceb26efce54b05a0a40bfd74cbbef
|
url_launcher: 6fef411d543ceb26efce54b05a0a40bfd74cbbef
|
||||||
webview_flutter: 9f491a9b5a66f2573946a389b2677987b0ff8c0b
|
webview_flutter: 9f491a9b5a66f2573946a389b2677987b0ff8c0b
|
||||||
|
|
||||||
|
PODFILE CHECKSUM: 82161cafcb98ddf3e6a0ff8149da3f656be3f1e3
|
||||||
|
|
||||||
COCOAPODS: 1.10.1
|
COCOAPODS: 1.9.3
|
||||||
|
|
|
@ -15,25 +15,25 @@ class UnspentCoinsListPage extends BasePage {
|
||||||
@override
|
@override
|
||||||
String get title => S.current.unspent_coins_title;
|
String get title => S.current.unspent_coins_title;
|
||||||
|
|
||||||
@override
|
//@override
|
||||||
Widget trailing(BuildContext context) {
|
//Widget trailing(BuildContext context) {
|
||||||
final questionImage = Image.asset('assets/images/question_mark.png',
|
// final questionImage = Image.asset('assets/images/question_mark.png',
|
||||||
color: Theme.of(context).primaryTextTheme.title.color);
|
// color: Theme.of(context).primaryTextTheme.title.color);
|
||||||
|
|
||||||
return SizedBox(
|
// return SizedBox(
|
||||||
height: 20.0,
|
// height: 20.0,
|
||||||
width: 20.0,
|
// width: 20.0,
|
||||||
child: ButtonTheme(
|
// child: ButtonTheme(
|
||||||
minWidth: double.minPositive,
|
// minWidth: double.minPositive,
|
||||||
child: FlatButton(
|
// child: FlatButton(
|
||||||
highlightColor: Colors.transparent,
|
// highlightColor: Colors.transparent,
|
||||||
splashColor: Colors.transparent,
|
// splashColor: Colors.transparent,
|
||||||
padding: EdgeInsets.all(0),
|
// padding: EdgeInsets.all(0),
|
||||||
onPressed: () => showUnspentCoinsAlert(context),
|
// onPressed: () => showUnspentCoinsAlert(context),
|
||||||
child: questionImage),
|
// child: questionImage),
|
||||||
),
|
// ),
|
||||||
);
|
// );
|
||||||
}
|
//}
|
||||||
|
|
||||||
final UnspentCoinsListViewModel unspentCoinsListViewModel;
|
final UnspentCoinsListViewModel unspentCoinsListViewModel;
|
||||||
|
|
||||||
|
@ -64,7 +64,7 @@ class UnspentCoinsListFormState extends State<UnspentCoinsListForm> {
|
||||||
}
|
}
|
||||||
|
|
||||||
void afterLayout(dynamic _) {
|
void afterLayout(dynamic _) {
|
||||||
showUnspentCoinsAlert(context);
|
//showUnspentCoinsAlert(context);
|
||||||
}
|
}
|
||||||
|
|
||||||
@override
|
@override
|
||||||
|
|
Loading…
Reference in a new issue