Created
July 24, 2024 14:58
-
-
Save Maruchin1/675036ffc2897e9e67eeeb812e97e89f to your computer and use it in GitHub Desktop.
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
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