Код: Выделить всё
struct SpecialButton_Preview: PreviewProvider {
static var previews: some View {
@State var value: Bool = true
SpecialButton(isOn: $value)
}
}
Код: Выделить всё
#Preview { // Error: Ambiguous use of 'Preview(_:traits:body:)'
@State var value: Bool = true
SpecialButton(isOn: $value)
}
Подробнее здесь: https://stackoverflow.com/questions/764 ... -a-binding
Мобильная версия