Zoltan Demant
03/28/2025, 10:51 AM@Composable
fun TopAppBarWithKeyline(keyline: Dp = 72.dp){
Row{
NavigationIcon(Modifier.padding(horizontal = ?.dp))
// This is basically what I want to do, but I have no clue on how Id get the
// magic numbers; I can get navigationSize from Modifier.onPlaced, etc.
val titleOffset = keyline - magicNumber*2 + navigationSize
Title(Modifier.offset(x=titleOffset))
}
}
Zoltan Demant
03/28/2025, 1:19 PM