Hey. I Am currently trying out the compose theming...
# compose
b
Hey. I Am currently trying out the compose theming and did not find a way to define a TextStyle as uppercase. Is this possible?
Copy code
TextStyle(
  fontFamily = SansSerif,
  fontSize = 28.sp,
  fontWeight = FontWeight.Normal,
  color = Gray,
  uppercase = true -> I am missing an attribute for default uppercasing the TextStyle
)
👀 1