Val Salamakha
03/22/2020, 3:55 AMnavigationIcon = {
IconButton(onClick = {
scaffoldState.drawerState = DrawerState.Opened
},
children = {
Icon(icon = vectorResource(id = R.drawable.ic_jetnews_logo), tint = Color.White)
}
)
// VectorImageButton(R.drawable.ic_jetnews_logo) {
// scaffoldState.drawerState = DrawerState.Opened
// }
}
And VectorImage could be replaced to:
Icon(icon = vectorResource(id = R.drawable.ic_bookmarked))
//VectorImage(id = R.drawable.ic_bookmarked)
kartoffelsup
03/22/2020, 8:46 AMVal Salamakha
03/23/2020, 5:12 AM