Skip to content

Instantly share code, notes, and snippets.

@benigumocom
Last active April 25, 2023 22:17
Show Gist options
  • Select an option

  • Save benigumocom/33e67875f0bf2b4eb40452178e4d1789 to your computer and use it in GitHub Desktop.

Select an option

Save benigumocom/33e67875f0bf2b4eb40452178e4d1789 to your computer and use it in GitHub Desktop.
Jetpack Compose AnimationText like ChatGPT
@Composable
fun AnimationText(text: String) {
var s by remember { mutableStateOf("") }
LaunchedEffect(Unit) {
text.indices.forEach { index ->
delay(10)
s = text.substring(0..index)
}
}
Text(s)
}
@benigumocom
Copy link
Copy Markdown
Author

【Jetpack Compose】ChatGPT のようなアニメーションの @composable AnimationText
👉 https://android.benigumo.com/20230425/animationtext/

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment