Untitled

 avatar
unknown
plain_text
18 days ago
296 B
5
Indexable
Group {
    
    if authViewModel.isLoading {
        LoaderView()
        
    } else if let user = authViewModel.user, user.isEmailVerified {
        MainTabView() // ✅ ONLY verified users
        
    } else {
        LandingScreenView() // ❌ unverified OR not logged in
    }
}
Editor is loading...
Leave a Comment