Package-level declarations

Types

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

Immutable data class representing the state of the registration form.

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

ViewModel for the sign-up screen, managing user registration and form validation.