Created
February 27, 2022 21:23
-
-
Save hkawii/25733d02d7e552e843e8a8c2cdaf51f8 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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