Skip to content

Instantly share code, notes, and snippets.

@hkawii
Created February 27, 2022 21:23
Show Gist options
  • Save hkawii/25733d02d7e552e843e8a8c2cdaf51f8 to your computer and use it in GitHub Desktop.
Save hkawii/25733d02d7e552e843e8a8c2cdaf51f8 to your computer and use it in GitHub Desktop.
class FormViewModel : ViewModel() {
var firstName by mutableStateOf("")
var lastName by mutableStateOf("")
var password by mutableStateOf("")
var mobileNumber by mutableStateOf("")
var mobileCountryCode by mutableStateOf("")
var dateOfBirth by mutableStateOf("")
//...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment