I am working with the material 3 MediumTopAppBar. Everything looks good untill i decided to test with a bigger display/font size than usual.
I havent really done anything other than what the android developer site told me to do.
MediumTopAppBar(
title = { Text(text = pageTitle) },
navigationIcon = {
IconButton(onClick = { onBackPressed.invoke() }) {
Icon(
imageVector = Icons.Filled.ArrowBack,
contentDescription = stringResource(id = R.string.action_back)
)
}
},
scrollBehavior = scrollBehavior,
Is there something i am missing? Or is there some way i can "hack" it to look good?