你可以试试 Romain 最新的图书馆
Composable widget for Jetpack Compose that allows to flow text around arbitrary shapes over multiple columns.
如何只使用一个简单的文本,但在一个盒子里,我们可以使用修改器来裁剪图像的大小!!
Box {
Image(modifier = modifier.clicp(RoundedCornerShape(...)))
Text(...)
}
modifier.clip(...)
是可以解决问题的东西。
您可以使用
Text
Composable 的 AnnotatedString 和 inLineContent 参数在文本中添加图像
像 如何在 jetpack 中添加 ImageSpan 撰写 Text
或者您可以使用
Box
Composable 和 Clip your image using Modifier.clip(Shape)
找到解决方案了吗?我还在找一个