Is there a better way to do this? ```Text( tex...
# compose
n
Is there a better way to do this?
Copy code
Text(
    text = "H4 Primary!",
    style = +themeTextStyle {
        h4.copy(
            color = +themeColor { 
                primary 
            }
        )
    }
)
l
Right now, unfortunately not, although there is room for improvement here for sure.
🙏 1