Hi, how do I draw a shadow of an TextField with a ...
# compose
a
Hi, how do I draw a shadow of an TextField with a RoundedCornerShape ? When I try with
Modifier.shadow()
I get a rectangle shadow
j
Does using the clip modifier help at all?
s
Shadow seems to accept a shape parameter, try passing the shape that you want the shadow to have in there
a
Thanks !