Skip to content

Instantly share code, notes, and snippets.

@chriseidhof
Created November 22, 2024 08:14
Show Gist options
  • Save chriseidhof/9ef521b1ecb585c51562a461cac1ef90 to your computer and use it in GitHub Desktop.
Save chriseidhof/9ef521b1ecb585c51562a461cac1ef90 to your computer and use it in GitHub Desktop.
With State helper
import SwiftUI
/*
This is here to make working with state and bindings in previews easier. See below for an example.
If you're using a recent version of Xcode you can use the [Previewable](https://developer.apple.com/documentation/SwiftUI/Previewable()) macro instead.
*/
struct WithState<Value, Content: View>: View {
@ViewBuilder var content: (Binding<Value>) -> Content
@State private var value: Value
init(_ initialValue: Value, @ViewBuilder content: @escaping (Binding<Value>) -> Content) {
_value = .init(initialValue: initialValue)
self.content = content
}
var body: some View {
content($value)
}
}
#Preview {
WithState(true) { binding in
Toggle("Is On", isOn: binding)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment