Created
November 22, 2024 08:14
-
-
Save chriseidhof/9ef521b1ecb585c51562a461cac1ef90 to your computer and use it in GitHub Desktop.
With State helper
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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