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
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 = {};
temp[const Icon(Icons.card_membership)] = () {
setState(() {
_selcetedIndex = 1;
_selcetedIndex = 0;
});
};
temp[const Icon(Icons.favorite)] = () {
setState(() {
_selcetedIndex = 0;
_selcetedIndex = 1;
});
};