作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
随着新的@Binding
委托(delegate)和预览,我觉得总是要创建一个 @State static var
有点尴尬创建必要的绑定(bind):
struct TestView: View {
@Binding var someProperty: Double
var body: some View {
//...
}
}
#if DEBUG
struct TestView_Previews : PreviewProvider {
@State static var someProperty = 0.7
static var previews: some View {
TestView(someProperty: $someProperty)
}
}
#endif
最佳答案
您可以使用 .constant(VALUE)
在您的预览中,无需创建 @State
.
/// A value and a means to mutate it.
@propertyWrapper public struct Binding<Value> {
/// Creates a binding with an immutable `value`.
public static func constant(_ value: Value) -> Binding<Value>
}
例如
TestView(someProperty: .constant(5.0))
关于swiftui - 如何为预览创建一个简单的绑定(bind),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56485304/
我是一名优秀的程序员,十分优秀!