mod switch between pages and remove errors

This commit is contained in:
atseirjo
2025-10-28 14:01:34 +01:00
parent 059b4773f4
commit 461b07bf10
6 changed files with 211 additions and 44 deletions

View File

@@ -4,7 +4,8 @@ import '../controllers/login_controller.dart';
class LoginBinding extends Bindings {
@override
void dependencies() {
Get.lazyPut<LoginController>(() => LoginController());
// Permanent für bessere Controller-Stabilität
Get.put<LoginController>(LoginController(), permanent: true);
}
}