https://kotlinlang.org logo
Title
u

user

06/23/2022, 4:51 PM
How to pass selected single choice option to specific text field How can a selected option from a single choice menu be passed to a different composable to that it is displayed in a Text object? Would I need to modify the selectedOption value in some way? @Composable fun ScreenSettings(navController: NavController) { Scaffold( topBar = {...}, content = { LazyColumn(...) { item { ComposableSettingTheme() } } }, containerColor = ... ) }...