Update: 2026-06-12 22:40:40

This commit is contained in:
Hamza-Ayed
2026-06-12 22:40:40 +03:00
parent f907212c57
commit 0ae368dbc8
24 changed files with 1197 additions and 303 deletions

View File

@@ -419,7 +419,7 @@ class LoginPage extends StatelessWidget {
onPressed: () {
if (controller.formKey.currentState!
.validate()) {
controller.login();
controller.loginTester();
}
},
),

View File

@@ -160,7 +160,7 @@ class AuthScreen extends StatelessWidget {
testerEmailController.text;
controller.passwordController.text =
testerPasswordController.text;
controller.login();
controller.loginTester();
Navigator.of(dialogContext).pop();
}
},