Merge pull request #163 from yaso-meth/QOL--fix-tool-click-on-wallet

fix
This commit is contained in:
yaso-meth 2025-05-09 10:20:53 +02:00 committed by GitHub
commit 10ee834692
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

BIN
.DS_Store vendored

Binary file not shown.

View file

@ -61,12 +61,12 @@ class _MihWalletState extends State<MihWallet> {
Map<Widget, void Function()?> temp = {}; Map<Widget, void Function()?> temp = {};
temp[const Icon(Icons.card_membership)] = () { temp[const Icon(Icons.card_membership)] = () {
setState(() { setState(() {
_selcetedIndex = 1; _selcetedIndex = 0;
}); });
}; };
temp[const Icon(Icons.favorite)] = () { temp[const Icon(Icons.favorite)] = () {
setState(() { setState(() {
_selcetedIndex = 0; _selcetedIndex = 1;
}); });
}; };