Zun
.subtitle2.merge(TextStyle(textDecoration = TextDecoration.Underline))
Text( text = action.text, modifier = Modifier .clickable { safeAction.onClick }, style = MaterialTheme.typography.subtitle2 .merge(TextStyle(textDecoration = TextDecoration.Underline)) )
Bryan Herbst
Text
textDecoration
Text( text = action.text, modifier = Modifier .clickable { safeAction.onClick }, style = MaterialTheme.typography.subtitle2, textDecoration = TextDecoration.Underline )
A modern programming language that makes developers happier.