Files
GSFV2/gsf/lib/view_model/home_page_controller.dart
2024-04-10 12:51:20 +05:30

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;
}