Skip to content

Instantly share code, notes, and snippets.

@MkhytarMkhoian
Last active May 15, 2024 19:32
Show Gist options
  • Save MkhytarMkhoian/5839712cf34576d240466d6ef36d2b69 to your computer and use it in GitHub Desktop.
Save MkhytarMkhoian/5839712cf34576d240466d6ef36d2b69 to your computer and use it in GitHub Desktop.
@Composable
fun TopAppBar(
modifier: Modifier = Modifier,
title: String = "",
) {
Text(text = title)
}
Scaffold(
topBar = {
TopAppBar(
title = stringResource(id = R.string.select_fare_title),
)
},
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment