From a9bd02a908ddb42af134532e8cc433d645c00a34 Mon Sep 17 00:00:00 2001 From: Elham Rababah Date: Sun, 16 May 2021 16:08:35 +0300 Subject: [PATCH] first step from user another account --- lib/screens/auth/verification_methods_screen.dart | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/screens/auth/verification_methods_screen.dart b/lib/screens/auth/verification_methods_screen.dart index 1e61d553..c03d5946 100644 --- a/lib/screens/auth/verification_methods_screen.dart +++ b/lib/screens/auth/verification_methods_screen.dart @@ -341,12 +341,15 @@ class _VerificationMethodsScreenState extends State { color: Colors.red[700], onPressed: () { projectsProvider.isLogin = true; + authenticationViewModel.unverified = false; + authenticationViewModel.isLogin = false; Navigator.pushAndRemoveUntil( AppGlobal.CONTEX, FadePage( page: RootPage(), ), (r) => false); + // Navigator.of(context).pushNamed(LOGIN); }, ),