1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
| Text( text = "text", color = Color.Yellow, fontSize = 16.sp, fontWeight = FontWeight.Bold, fontStyle = FontStyle.Italic, fontFamily = FontFamily.Monospace, textDecoration = TextDecoration.LineThrough, letterSpacing = 20.sp, lineHeight = 16.sp, textAlign = TextAlign.Justify, overflow = TextOverflow.Clip, softWrap = true, maxLines = 1, onTextLayout = { }, modifier = Modifier .fillMaxWidth() .height(60.dp) .padding(10.dp, 5.dp, 10.dp, 5.dp) .align(alignment = Alignment.End) )
|