Created
September 6, 2020 09:27
-
-
Save damianpetla/3f0a9d3884388e6f86191a6ec18e3587 to your computer and use it in GitHub Desktop.
This file contains 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 SimpleList() { | |
Column { | |
Text("First item") | |
Text("Second item") | |
for (i in 0..10) { | |
Text("Next $i item") | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment