Created
August 25, 2023 12:21
-
-
Save chiragthummar/6866330bf49c8c6564c36f03c67d1524 to your computer and use it in GitHub Desktop.
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 Screen1() { | |
Column(modifier = Modifier.fillMaxSize()) { | |
Text(text = "One Screen", fontSize = 20.sp) | |
} | |
} | |
@Composable | |
fun Screen2() { | |
Column(modifier = Modifier.fillMaxSize()) { | |
Text(text = "Two Screen", fontSize = 20.sp) | |
} | |
} | |
@Composable | |
fun Screen3() { | |
Column(modifier = Modifier.fillMaxSize()) { | |
Text(text = "Three Screen", fontSize = 20.sp) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment