How to disable elevation overlays?
# compose
s
How to disable elevation overlays?
Also the padding between the
navigationIcon
and
title
of
TopAppBar
y
If you want less padding, you can use the overload that takes
content
and implement the content yourself (icon+title). If you want more, you can just add padding to the title composable with a modifier
👍 1
l
Currently there is no way to disable elevation overlays, but they are only applies for the color
surface
so you can use a different color to prevent the overlay behavior
👍 1
s
Alright thanks!
Also, is there a way to remove
TextField
's underline or do I have to use
BaseTextField