作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个快速的RoundedRectangle
:
ScrollView(.horizontal, showsIndicators: false) {
Group {
HStack {
if let height = height {
if height != "" {
aboutMeItem(info: height, image: "ruler").frame(minWidth: 20)
}
}
}
.frame(minHeight: 70, maxHeight: 70)
.overlay(RoundedRectangle(cornerRadius: 15).stroke(Color("darkGrey"), lineWidth: 3))
.padding([.leading,.top,.trailing])
}
}
我的输出是:
由于某种原因,底线被稍微切掉,您看不到完整的线宽。
我尝试删除其下方的 View ,以防有东西覆盖它,但事实并非如此。我尝试过弄乱 frame
min
和 maxHeight
,但无论如何,那仍然是一样的。
最佳答案
您应该使用中风边框
而不是中风
。
你做的另一件事是.padding([.leading,.top,.trailing])
所以你没有包括bottom!但我认为 StrokeBorder
也能涵盖这一点。
ScrollView(.horizontal, showsIndicators: false) {
Group {
HStack {
if let height = height {
if height != "" {
aboutMeItem(info: height, image: "ruler").frame(minWidth: 20)
}
}
}
.frame(minHeight: 70, maxHeight: 70)
.overlay(RoundedRectangle(cornerRadius: 15).strokeBorder(Color("darkGrey"), lineWidth: 3)) // <<: Here
.padding([.leading,.top,.trailing]) // <<: Here!!! you did not used .bottom
}
}
关于SwiftUI RoundedRectangle 在底部被切除,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67126516/
我是一名优秀的程序员,十分优秀!