Skip to content

Instantly share code, notes, and snippets.

View amanv8060's full-sized avatar

Aman Verma amanv8060

View GitHub Profile
@amanv8060
amanv8060 / AnimatedText.kt
Created October 1, 2022 11:41
animate objext on x axis for shake effect
@Composable
fun Greeting(name: String) {
val coroutineScope = rememberCoroutineScope()
val view = LocalView.current
val offsetX = remember { Animatable(0f) }
Text(
text = "Hello $name!",
modifier = Modifier