rename container folders

This commit is contained in:
Yasien Mac Mini 2026-01-29 11:11:45 +02:00
parent d5349d981c
commit 5b052a1fa9
654 changed files with 0 additions and 0 deletions

View file

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