Created
May 27, 2025 03:02
-
-
Save Sprajapati123/6957568e288f2cb424e302c23cfe5432 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
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