rename container folders
This commit is contained in:
parent
d5349d981c
commit
5b052a1fa9
654 changed files with 0 additions and 0 deletions
19
mih_ui/lib/mih_providers/mih_authentication_provider.dart
Normal file
19
mih_ui/lib/mih_providers/mih_authentication_provider.dart
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
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();
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue