Skip to content

Instantly share code, notes, and snippets.

@Maruchin1
Created July 24, 2024 14:58
Show Gist options
  • Save Maruchin1/675036ffc2897e9e67eeeb812e97e89f to your computer and use it in GitHub Desktop.
Save Maruchin1/675036ffc2897e9e67eeeb812e97e89f to your computer and use it in GitHub Desktop.
struct ProductListView: View {
let viewModel: ProductListViewModel
@State var products: [Product] = []
var body: View {
VStack {
...
}
.stateBinding($products, viewModel.products)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment