skip to Main Content

Android Studio – TextField 'OnValueChange' called twice without entering any input

fun TextFieldWithIconsAndErrorLabel( text: String, charLimit: Int = Int.MAX_VALUE, keyboardType: KeyboardType = KeyboardType.Text, onValueChange: (String) -> Unit, ) { val keyboardController = LocalSoftwareKeyboardController.current var shouldShowMaxCharLimitError by remember { mutableStateOf(false) } BasicTextField( modifier = Modifier .fillMaxWidth(), value = text, onValueChange = {…

VIEW QUESTION

Flutter android build issue post flutter update

build and run works fine but in release build, I started finding issue: ERROR: Missing classes detected while running R8. Please add the missing classes or apply additional keep rules that are generated in /Users/chiragjuneja/Documents/work/playground/yashutales/badminton_score_tracker/build/flutter_inappwebview_android/outputs/mapping/release/missing_rules.txt. ERROR: R8: Missing class android.window.BackEvent…

VIEW QUESTION
Back To Top
Search