Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Compose: TopAppBar default height for Material3?

How can I find out the default height for the SmallTopAppBar (or just TopAppBar)? I am implementing a SearchView that replaces the topBar with a similar looking bar with the Search TextView but I cant find out how to apply the proper height.

In TopAppBarDefaults:

https://developer.android.com/reference/kotlin/androidx/compose/material3/TopAppBarDefaults

only the color is shown.

like image 736
Gabriel Sanmartin Avatar asked Sep 11 '25 03:09

Gabriel Sanmartin


1 Answers

It's 64dp, you can find that in TopAppBarSmallTokens and in material design docs.

like image 117
Jan Bína Avatar answered Sep 13 '25 16:09

Jan Bína