How to animate horizontally using scaleIn/Out in a custom composable? Jetpack Compose
I wanted to animate my search bar size from left to the right when it appears (only X axis)
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
)...