fix : ui and android premissons

This commit is contained in:
2025-05-18 09:57:10 +03:30
parent f7ea9f3a19
commit dcc333e302
4 changed files with 2 additions and 9 deletions

View File

@@ -38,7 +38,6 @@ class AuthLogic extends GetxController {
Rx<OtpStatus> otpStatus = OtpStatus.init.obs;
RxInt secondsRemaining = 120.obs;
int wsd = 120;
Timer? _timer;
AuthRepositoryImpl authRepository = diAuth.get<AuthRepositoryImpl>();
@@ -126,9 +125,4 @@ class AuthLogic extends GetxController {
);
isLoading.value = false;
}
adder() {
tokenStorageService.tsss.value = (wsd++).toString();
}
}

View File

@@ -193,9 +193,6 @@ class AuthPage extends GetView<AuthLogic> {
height: 48,
);
}, controller.isLoading),
FloatingActionButton(onPressed: () {
controller.adder();
}, child: Icon(Icons.add),)
],
),
),