Package-level declarations

Types

Link copied to clipboard
data class SignInScreenData(val email: TextFiledData = TextFiledData(String()), val password: TextFiledData = TextFiledData(String()))

Immutable data class representing the state of the sign-in form.

Link copied to clipboard
class SignInViewModel @Inject constructor(authRepository: AuthRepository) : ViewModel

ViewModel for the sign-in screen, managing authentication state and validation.