Skip to content

Instantly share code, notes, and snippets.

@Sprajapati123
Created May 27, 2025 03:02
Show Gist options
  • Save Sprajapati123/6957568e288f2cb424e302c23cfe5432 to your computer and use it in GitHub Desktop.
Save Sprajapati123/6957568e288f2cb424e302c23cfe5432 to your computer and use it in GitHub Desktop.
topBar = {
TopAppBar(
colors = TopAppBarDefaults.topAppBarColors(
containerColor = Color.Magenta,
titleContentColor = Color.Yellow,
navigationIconContentColor = Color.White
),
title = {
Text("Dashboard")
},
navigationIcon = {
IconButton(onClick = {
activity?.finish()
}) {
Icon(Icons.Default.ArrowBack, contentDescription = null)
}
},
actions = {
IconButton(onClick = {}) {
Icon(Icons.Default.Search, contentDescription = "Search")
}
IconButton(onClick = {}) {
Icon(Icons.Default.Settings, contentDescription = "Settings")
}
},
)
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment