Are there plans to support more complex shadow def...
# compose
g
Are there plans to support more complex shadow definitions like the `TextView`/`TextStyle` APIs do?
Copy code
data class Shadow(
    val color: Color = Color(0xFF000000),
    val offset: Offset = Offset.zero,
    val blurRadius: Px = 0.px
)
The shadows we usually define in Xd is composed of offset and blur, and it's often not precise trying to match with elevation
👍 1