Skip to content

Instantly share code, notes, and snippets.

@raamcosta
Created September 28, 2021 16:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save raamcosta/5905bd43e723b3536cfca91e58d4b48f to your computer and use it in GitHub Desktop.
Save raamcosta/5905bd43e723b3536cfca91e58d4b48f to your computer and use it in GitHub Desktop.
Current Compose Navigation Graph code example - Composables
@Composable
fun ProfileScreen(
profileId: String,
isEditable: Boolean
) {/*...*/}
@Composable
fun LoginScreen() {/*...*/}
@Composable
fun MainFeedScreen(
navigateToProfile: (String, Boolean) -> Unit
) {/*...*/}
@Composable
fun SearchScreen() {/*...*/}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment