refactor: optimize module navigation delay and clean up unused code in splash and auth logic

fix : role access to chicken app
This commit is contained in:
2025-12-29 11:21:54 +03:30
parent 12cdc1a5e8
commit 57704399b9
12 changed files with 111 additions and 1942 deletions

View File

@@ -94,9 +94,9 @@ class ModulesLogic extends GetxController {
void _goToModule(Module module, int index) async {
selectedIndex.value = index;
await Future.delayed(Duration(milliseconds: 300));
await Future.delayed(Duration(milliseconds: 100));
selectedIndex.value = null;
// saveModule(module);
await navigateToModule(module);
}