switch wallet icons

This commit is contained in:
2025-05-07 13:21:03 +02:00
parent 835dbbb826
commit 78d35a672e

View File

@@ -59,16 +59,16 @@ class _MihWalletState extends State<MihWallet> {
MihAppTools getTools() {
Map<Widget, void Function()?> temp = {};
temp[const Icon(Icons.favorite)] = () {
setState(() {
_selcetedIndex = 0;
});
};
temp[const Icon(Icons.card_membership)] = () {
setState(() {
_selcetedIndex = 1;
});
};
temp[const Icon(Icons.favorite)] = () {
setState(() {
_selcetedIndex = 0;
});
};
return MihAppTools(
tools: temp,