Justin Xu
06/08/2023, 4:02 AMMutableState<String>
with new text ONLY when the text value changes AND when the user clicks off of the text box?Stylianos Gakis
06/08/2023, 9:23 PMJustin Xu
06/08/2023, 11:18 PMStylianos Gakis
06/08/2023, 11:27 PMJustin Xu
06/08/2023, 11:35 PMZach Klippenstein (he/him) [MOD]
06/09/2023, 6:51 PMModifier.onFocusChanged {
if (!it.isFocused) {
submittedText = text
}
}