Small top app bar
A title aligned to the start, with navigation and action icons.
TopAppBar(
title = { Text("Inbox") },
navigationIcon = {
IconButton(onClick = {}) { Icon(Icons.Filled.Menu, "Open menu") }
},
actions = {
IconButton(onClick = {}) { Icon(Icons.Filled.Search, "Search") }
IconButton(onClick = {}) { Icon(Icons.Filled.MoreVert, "More") }
}
)