11 lines
276 B
Dart
11 lines
276 B
Dart
import 'package:get/get.dart';
|
|
|
|
class HomePageController extends GetxController {
|
|
RxInt bottomNavIndex = 0.obs;
|
|
void updateBottomNavIndex(int bottomNavIndex) =>
|
|
this.bottomNavIndex.value = bottomNavIndex;
|
|
|
|
//live session
|
|
static int SessionsActiveTabIndex = 0;
|
|
}
|