I’ve been trying to get text with actual borders working on Jetpack Compose.
I tried using the shadow style in the Text
composable but it doesn’t work nor look very good
Text(
text = "lorem ipsum",
style = TextStyle(shadow = Shadow(color = borderColor, blurRadius = 7.5f)),
)
using shadow results in something like this
but what i need should more akin to this