This commit is contained in:
2025-05-09 10:19:15 +02:00
parent a630b6ec38
commit a757730cbe
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;
});
};