Skip to content

Instantly share code, notes, and snippets.

@Ifeo-A
Created November 16, 2022 21:29
Show Gist options
  • Save Ifeo-A/68ea41711ef9b3c4c14c95e02a13dd67 to your computer and use it in GitHub Desktop.
Save Ifeo-A/68ea41711ef9b3c4c14c95e02a13dd67 to your computer and use it in GitHub Desktop.
Compose crossfade animation
Crossfade(targetState = currentText.isEmpty()) { isEmpty ->
if(isEmpty){
Icon(
imageVector = Icons.Outlined.Search,
contentDescription = null,
modifier = Modifier
.clickable {
currentText = ""
}
)
} else {
Icon(
imageVector = Icons.Outlined.Close,
contentDescription = null,
modifier = Modifier
.clickable {
currentText = ""
}
)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment