Skip to content

Instantly share code, notes, and snippets.

@VAnsimov
Created October 13, 2021 15:37
Show Gist options
  • Save VAnsimov/83cd5586905d15c7f5cfae458cfb07d1 to your computer and use it in GitHub Desktop.
Save VAnsimov/83cd5586905d15c7f5cfae458cfb07d1 to your computer and use it in GitHub Desktop.
struct ListView: View {
// 1
@StateObject private var container: MVIContainer<ListIntent, ListModelStatePotocol>
var body: some View {
// 2
Text(container.model.text)
.padding()
.onAppear(perform: {
// 3
self.container.intent.viewOnAppear()
})
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment