Last active
April 25, 2023 22:17
-
-
Save benigumocom/33e67875f0bf2b4eb40452178e4d1789 to your computer and use it in GitHub Desktop.
Jetpack Compose AnimationText like ChatGPT
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @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) | |
| } |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
【Jetpack Compose】ChatGPT のようなアニメーションの @composable AnimationText
👉 https://android.benigumo.com/20230425/animationtext/