gpt4 book ai didi

ios - 特定边的边框 SwiftUI

转载 作者:行者123 更新时间:2023-12-05 02:06:25 25 4
gpt4 key购买 nike

我在 SwiftUI

中使用下面的代码为所有边添加了边框
Rectangle()
.overlay(Rectangle()
.fill(Color.white).padding(2))
.foregroundColor(Color.red)

如何为矩形的特定边添加边框?

最佳答案

这种情况下的解决方案是使用应用了填充的显式指定边

Rectangle()
.overlay(Rectangle()
.fill(Color.white).padding([.leading, .trailing], 2)) // << here !!
.foregroundColor(Color.red)

关于ios - 特定边的边框 SwiftUI,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62755438/

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