Skip to content

Instantly share code, notes, and snippets.

@jamesrochabrun
Last active July 23, 2020 18:38
Show Gist options
  • Save jamesrochabrun/8d89ef03663c3611cdf534d460baee53 to your computer and use it in GitHub Desktop.
Save jamesrochabrun/8d89ef03663c3611cdf534d460baee53 to your computer and use it in GitHub Desktop.
// 1
@main
struct SwiftUIMoviesApp: App {
// 2
@StateObject private var model = MoviesProvider()
// 3
var body: some Scene {
WindowGroup {
// 4
NavigationView {
// 5
List(model.movies, id: \.id) { movie in
// 6
MovieRow(movie: movie)
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment