JCB - Scaffold TopBar

PHOTO EMBED

Mon Sep 06 2021 05:57:00 GMT+0000 (Coordinated Universal Time)

Saved by @GoodRequest. #kotlin

topBar = {
    TopAppBar(
        title = { Text(text = "Title text") },
        navigationIcon = {
            Icon(modifier = padding, imageVector = Icons.Default.ArrowBack, contentDescription = "Back")
        },
        actions = {
            Icon(modifier = padding, imageVector = Icons.Default.Favorite, contentDescription = "Favorite")
            Icon(modifier = padding, imageVector = Icons.Default.Search, contentDescription = "Search")
        }
    )
}
content_copyCOPY