I'm probably missing something basic here. I'm goi...
# compose
c
I'm probably missing something basic here. I'm going to blame it on sleep. But this defintiely used to work, but now the IDE is complaining "Parameters must have type annotation"
Copy code
class LoginUiState(
    var screenTitle by mutableStateOf("")
)
t
{}
instead of
()
?
Copy code
class LoginUiState {
    var screenTitle by mutableStateOf("")
}
👍 1