Is it possible to change TopAppBar's height withou...
# compose
k
Is it possible to change TopAppBar's height without creating new one? it doesn't accept modifier and in source code the height is hardcoded
Copy code
Surface(color = color, contentColor = contentColor, elevation = elevation, shape = shape) {
        Row(
            LayoutWidth.Fill + LayoutPadding(
                start = AppBarHorizontalPadding,
                end = AppBarHorizontalPadding
            ) + LayoutHeight(AppBarHeight),
            arrangement = Arrangement.SpaceBetween,
            children = children
        )
    }
l
Unfortunately not currently, but modifier param has been added and will be available in the next release. (We need to add modifier params to all components, it's just a long process)
👍 3