Skip to content

Instantly share code, notes, and snippets.

@MkhytarMkhoian
Last active May 15, 2024 19:32
Show Gist options
  • Save MkhytarMkhoian/e44e78af9cb145a56f0355e9c7d524da to your computer and use it in GitHub Desktop.
Save MkhytarMkhoian/e44e78af9cb145a56f0355e9c7d524da to your computer and use it in GitHub Desktop.
@Composable
fun TopAppBar(
modifier: Modifier = Modifier,
title: @Composable () -> Unit = {},
) {
}
Scaffold(
topBar = {
TopAppBar(
title = { Text(text = 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