NEW: MIH Authentication Provider Setup

This commit is contained in:
2025-10-13 11:14:11 +02:00
parent f828ba1786
commit ebd78eb72b
5 changed files with 42 additions and 35 deletions

View File

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