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 {
InkWell(
key: keyChangeChest,
onTap: () {
Navigator.push(
context,
MaterialPageRoute(builder: (context) {
return const ChooseChest();
}),
);
// Navigator.push(
// context,
// MaterialPageRoute(builder: (context) {
// return const ChooseChest();
// }),
// );
},
child: SizedBox(
width: 400,
......@@ -171,7 +171,7 @@ class UnlockingWallet extends StatelessWidget {
'changeChest'.tr(),
style: const TextStyle(
fontSize: 22,
color: orangeC,
color:Colors.grey, // orangeC
fontWeight: FontWeight.w600),
),
),
......
......@@ -224,12 +224,12 @@ class _WalletsHomeState extends State<WalletsHome> {
InkWell(
key: keyChangeChest,
onTap: () {
Navigator.push(
context,
MaterialPageRoute(builder: (context) {
return const ChooseChest();
}),
);
// Navigator.push(
// context,
// MaterialPageRoute(builder: (context) {
// return const ChooseChest();
// }),
// );
},
child: SizedBox(
width: 400,
......@@ -238,7 +238,7 @@ class _WalletsHomeState extends State<WalletsHome> {
child: Text('changeChest'.tr(),
style: const TextStyle(
fontSize: 22,
color: orangeC,
color: Colors.grey, //orangeC
fontWeight: FontWeight.w500))),
),
),
......
This diff is collapsed.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment