UserForm

fun UserForm(loading: Boolean, isCreateAccount: Boolean = false, errorMessage: String?, viewModel: LoginScreenViewModel, onDone: (String, String, String, String) -> Unit = { firstName, lastName, email, pwd -> })

This composable is the User Form. It displays a form for the user to enter their email and password.

Parameters

loading

whether the form is loading

isCreateAccount

whether the form is for creating an account

onDone

the function to call when the form is done

See also