18 lines
335 B
Dart
18 lines
335 B
Dart
|
import 'package:mobx/mobx.dart';
|
||
|
|
||
|
part 'navigation_store.g.dart';
|
||
|
|
||
|
class NavigationStore extends _NavigationStore with _$NavigationStore {
|
||
|
NavigationStore() : super();
|
||
|
}
|
||
|
|
||
|
abstract class _NavigationStore with Store {
|
||
|
_NavigationStore();
|
||
|
|
||
|
@observable int navIndex = 1;
|
||
|
|
||
|
@action
|
||
|
void setNavIndex(int i) {
|
||
|
navIndex = i;
|
||
|
}
|
||
|
}
|