You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Any reason TextField inside of the decorated Windows's TitleBarView does not want to accept clicks? It shows up properly, but it does not seem to react to click events, so it cannot be used at all as it never activates the text entry mode and focus.
@Composable
fun DecoratedWindowScope.TitleBarView() {
val searchTerm by remember { mutableStateOf(TextFieldState()) }
TitleBar(Modifier.newFullscreenControls()) {
Row(Modifier.align(Alignment.Start)) {
TextField(
state = searchTerm,
placeholder = { Text("Search") },
modifier = Modifier.height(30.dp).width(350.dp))
...
The text was updated successfully, but these errors were encountered:
Any reason TextField inside of the decorated Windows's TitleBarView does not want to accept clicks? It shows up properly, but it does not seem to react to click events, so it cannot be used at all as it never activates the text entry mode and focus.
The text was updated successfully, but these errors were encountered: