gpt4 book ai didi

ios - lineWidth SwiftUI不正确

转载 作者:行者123 更新时间:2023-12-01 21:35:26 24 4
gpt4 key购买 nike

当我在swift UI中对Rectangle进行转角半径操作时,我的输出低于输出。
enter image description here

   var body: some View {
ZStack {
Rectangle()
.overlay(Rectangle()
.stroke(Color.red, lineWidth: 50))
.foregroundColor(Color.white)
}
}
顶部和底部是正确的,但行尾的LineWidth是给定值的一半。
如何解决呢?

最佳答案

笔画以线为中心。据我了解,您的期望可以解决
经过Xcode 11.4 / iOS 13.4测试
demo

    ZStack {
Rectangle()
.overlay(Rectangle()
.fill(Color.white).padding(50))
.foregroundColor(Color.red)
}.edgesIgnoringSafeArea(.all) // comment if you don't need full screen

关于ios - lineWidth SwiftUI不正确,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62754846/

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