NEW: MIH Authentication Provider Setup
This commit is contained in:
parent
f828ba1786
commit
ebd78eb72b
5 changed files with 42 additions and 35 deletions
|
|
@ -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();
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue