NEW: About MIH Provider Setup

This commit is contained in:
2025-10-13 10:45:30 +02:00
parent bbadc58ab8
commit f828ba1786
6 changed files with 69 additions and 45 deletions

View File

@@ -0,0 +1,14 @@
import 'package:flutter/foundation.dart';
class AboutMihProvider extends ChangeNotifier {
int toolIndex;
AboutMihProvider({
this.toolIndex = 0,
});
void setToolIndex(int index) {
toolIndex = index;
notifyListeners();
}
}