Skip to content
Snippets Groups Projects
Commit 2d9e8025 authored by atlasan's avatar atlasan
Browse files

disabling ChooseChest

parent 2cb7f234
No related branches found
No related tags found
1 merge request!54Translations and fixes
...@@ -156,12 +156,12 @@ class UnlockingWallet extends StatelessWidget { ...@@ -156,12 +156,12 @@ class UnlockingWallet extends StatelessWidget {
InkWell( InkWell(
key: keyChangeChest, key: keyChangeChest,
onTap: () { onTap: () {
Navigator.push( // Navigator.push(
context, // context,
MaterialPageRoute(builder: (context) { // MaterialPageRoute(builder: (context) {
return const ChooseChest(); // return const ChooseChest();
}), // }),
); // );
}, },
child: SizedBox( child: SizedBox(
width: 400, width: 400,
...@@ -171,7 +171,7 @@ class UnlockingWallet extends StatelessWidget { ...@@ -171,7 +171,7 @@ class UnlockingWallet extends StatelessWidget {
'changeChest'.tr(), 'changeChest'.tr(),
style: const TextStyle( style: const TextStyle(
fontSize: 22, fontSize: 22,
color: orangeC, color:Colors.grey, // orangeC
fontWeight: FontWeight.w600), fontWeight: FontWeight.w600),
), ),
), ),
......
...@@ -224,12 +224,12 @@ class _WalletsHomeState extends State<WalletsHome> { ...@@ -224,12 +224,12 @@ class _WalletsHomeState extends State<WalletsHome> {
InkWell( InkWell(
key: keyChangeChest, key: keyChangeChest,
onTap: () { onTap: () {
Navigator.push( // Navigator.push(
context, // context,
MaterialPageRoute(builder: (context) { // MaterialPageRoute(builder: (context) {
return const ChooseChest(); // return const ChooseChest();
}), // }),
); // );
}, },
child: SizedBox( child: SizedBox(
width: 400, width: 400,
...@@ -238,7 +238,7 @@ class _WalletsHomeState extends State<WalletsHome> { ...@@ -238,7 +238,7 @@ class _WalletsHomeState extends State<WalletsHome> {
child: Text('changeChest'.tr(), child: Text('changeChest'.tr(),
style: const TextStyle( style: const TextStyle(
fontSize: 22, fontSize: 22,
color: orangeC, color: Colors.grey, //orangeC
fontWeight: FontWeight.w500))), fontWeight: FontWeight.w500))),
), ),
), ),
......
This diff is collapsed.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment