gpt4 book ai didi

android - 如何在 Jetpack Compose 中有虚线边框?

转载 作者:行者123 更新时间:2023-12-03 16:31:30 37 4
gpt4 key购买 nike

我可以使用 Modifier.border() 轻松创建正常边框但是如何创建虚线边框,如下图所示。
enter image description here

最佳答案

1.0.x没有内置 Modifier.border()用破折号路径。
但是您可以使用 PathEffect.dashPathEffect Canvas .
就像是:

val stroke = Stroke(width = 2f,
pathEffect = PathEffect.dashPathEffect(floatArrayOf(10f, 10f), 0f)
)

Box(Modifier.size(250.dp,60.dp),contentAlignment = Alignment.Center){
Canvas(modifier = Modifier.fillMaxSize()) {
drawRoundRect(color = Color.Red,style = stroke)
}
Text(
textAlign = TextAlign.Center,text = "Tap here to introduce yourseft")
}
enter image description here

关于android - 如何在 Jetpack Compose 中有虚线边框?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66427587/

37 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com