Text(
text = "这是一个Text控件这是一个Text控件这是一个Text控件", //文字内容
modifier = Modifier
.height(50.dp)
.fillMaxWidth(),
color = WeTheme.colors.textPrimary, //字体颜色,这里是引用了主题里的颜色,也可以直接用比如Color.Red这种
fontSize = 18.sp, //字体大小,sp为单位
fontStyle = FontStyle.Italic, //正常/斜体
fontWeight = FontWeight.Bold, //字体的粗细(范围1-1000),Bold为700,每100系统都有一个预定义好的常量,数值越大字体越粗
// fontWeight= FontWeight(777), //也可以自己自定义
fontFamily = FontFamily.Cursive, //字体系列,提供了几种字体,Cursive为手写体
letterSpacing = 5.sp, //字符间距