Last active
July 23, 2020 18:38
-
-
Save jamesrochabrun/8d89ef03663c3611cdf534d460baee53 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
// 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