有时你会发现我明明设置了斜体,怎么没有生效呢?
看下可能没生效的代码:
@Composable
fun TextTest(){
Text(
fontStyle = FontStyle.Italic,
text = stringResource(id = R.string.cong01),
color = Color.Blue,
fontSize = 25.sp,
fontWeight = FontWeight.Bold,
)
}
如果你的能斜体,那就不用管了。
研究发现fontStyle还和fontFamily有关。
网友评论