Updated for Xcode 11 Beta3

This commit is contained in:
John Holdsworth
2019-07-08 11:08:29 +01:00
parent 03ac6281a1
commit 17a2f3b196
35 changed files with 207 additions and 88 deletions
@@ -20,11 +20,13 @@ class SceneDelegate: UIResponder, UIWindowSceneDelegate {
// This delegate does not imply the connecting scene or session are new (see `application:configurationForConnectingSceneSession` instead).
// Use a UIHostingController as window root view controller
let window = UIWindow(frame: UIScreen.main.bounds)
window.rootViewController = UIHostingController(rootView: NoteList()
.environmentObject(UserData()))
self.window = window
window.makeKeyAndVisible()
if let windowScene = scene as? UIWindowScene {
let window = UIWindow(windowScene: windowScene)
window.rootViewController = UIHostingController(rootView: NoteList()
.environmentObject(UserData()))
self.window = window
window.makeKeyAndVisible()
}
}
func sceneDidDisconnect(_ scene: UIScene) {
@@ -14,7 +14,7 @@ struct NoteList : View {
var body: some View {
NavigationView {
List(userData.notes) { note in
NavigationButton(destination: NoteDetail(note: note)) {
NavigationLink(destination: NoteDetail(note: note)) {
NoteRow(note: note)
}
}