It depends on your view. You can use the following...
# compose
v
It depends on your view. You can use the following:
Copy code
@Composable
fun HomeScreen(
    scaffoldState: ScaffoldState = remember { ScaffoldState() }
) {
    Column {
        Scaffold(
            scaffoldState = scaffoldState,
            topAppBar = {
                TopAppBar(
                    title = { Text(text = "Title") },
                    navigationIcon = {
                        IconButton(onClick =  { },
                        icon = {Icon(asset = <http://Icons.Default.Menu|Icons.Default.Menu>) }
                )
             })                
           },
           bodyContent = { modifier ->
            ...
            },
            floatingActionButton = {
                FloatingActionButton(
                    onClick =  {  },
                    icon =  { Icon(asset = Icons.Default.Add)
                })
            }
        )
    }
}