Код: Выделить всё
AnimatedContent(
targetState = isSearchBarVisible,
) { targetState ->
if (targetState) {
Row(
modifier = Modifier
.padding(
start = screenWidth * 0.08f,
end = 16.dp,
top = 8.dp,
bottom = 8.dp
),
verticalAlignment = Alignment.CenterVertically
) {
SearchBar(
hint = "Buscar oração",
onTextChange = { newText -> searchText = newText },
onSearchClicked = { focusManager.clearFocus() },
onBackClicked = {
isSearchBarVisible = false
searchText = ""
},
focusRequester = focusRequester
)
}
Подробнее здесь: https://stackoverflow.com/questions/790 ... jetpack-co
Мобильная версия