Update: 2026-05-07 18:41:16

This commit is contained in:
Hamza-Ayed
2026-05-07 18:41:16 +03:00
parent 3cdab9dccc
commit 528b3ca247
5 changed files with 186 additions and 79 deletions

View File

@@ -0,0 +1,9 @@
import 'package:get/get.dart';
class MainShellController extends GetxController {
final currentIndex = 0.obs;
void selectTab(int index) {
currentIndex.value = index;
}
}