├── BlogIdeaList-SwiftUI.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcuserdata │ └── andrewcbancroft.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist ├── BlogIdeaList-SwiftUI ├── AppDelegate.swift ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json ├── Base.lproj │ └── LaunchScreen.storyboard ├── ContentView.swift ├── Core Data │ ├── BlogIdea.swift │ └── BlogIdeaList_SwiftUI.xcdatamodeld │ │ ├── .xccurrentversion │ │ └── BlogIdeaList_SwiftUI.xcdatamodel │ │ └── contents ├── EditView.swift ├── Info.plist ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json └── SceneDelegate.swift └── README.md /BlogIdeaList-SwiftUI.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewcbancroft/BlogIdeaList-SwiftUI/HEAD/BlogIdeaList-SwiftUI.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /BlogIdeaList-SwiftUI.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewcbancroft/BlogIdeaList-SwiftUI/HEAD/BlogIdeaList-SwiftUI.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /BlogIdeaList-SwiftUI.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewcbancroft/BlogIdeaList-SwiftUI/HEAD/BlogIdeaList-SwiftUI.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /BlogIdeaList-SwiftUI.xcodeproj/xcuserdata/andrewcbancroft.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewcbancroft/BlogIdeaList-SwiftUI/HEAD/BlogIdeaList-SwiftUI.xcodeproj/xcuserdata/andrewcbancroft.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /BlogIdeaList-SwiftUI/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewcbancroft/BlogIdeaList-SwiftUI/HEAD/BlogIdeaList-SwiftUI/AppDelegate.swift -------------------------------------------------------------------------------- /BlogIdeaList-SwiftUI/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewcbancroft/BlogIdeaList-SwiftUI/HEAD/BlogIdeaList-SwiftUI/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /BlogIdeaList-SwiftUI/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewcbancroft/BlogIdeaList-SwiftUI/HEAD/BlogIdeaList-SwiftUI/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /BlogIdeaList-SwiftUI/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewcbancroft/BlogIdeaList-SwiftUI/HEAD/BlogIdeaList-SwiftUI/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /BlogIdeaList-SwiftUI/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewcbancroft/BlogIdeaList-SwiftUI/HEAD/BlogIdeaList-SwiftUI/ContentView.swift -------------------------------------------------------------------------------- /BlogIdeaList-SwiftUI/Core Data/BlogIdea.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewcbancroft/BlogIdeaList-SwiftUI/HEAD/BlogIdeaList-SwiftUI/Core Data/BlogIdea.swift -------------------------------------------------------------------------------- /BlogIdeaList-SwiftUI/Core Data/BlogIdeaList_SwiftUI.xcdatamodeld/.xccurrentversion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewcbancroft/BlogIdeaList-SwiftUI/HEAD/BlogIdeaList-SwiftUI/Core Data/BlogIdeaList_SwiftUI.xcdatamodeld/.xccurrentversion -------------------------------------------------------------------------------- /BlogIdeaList-SwiftUI/Core Data/BlogIdeaList_SwiftUI.xcdatamodeld/BlogIdeaList_SwiftUI.xcdatamodel/contents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewcbancroft/BlogIdeaList-SwiftUI/HEAD/BlogIdeaList-SwiftUI/Core Data/BlogIdeaList_SwiftUI.xcdatamodeld/BlogIdeaList_SwiftUI.xcdatamodel/contents -------------------------------------------------------------------------------- /BlogIdeaList-SwiftUI/EditView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewcbancroft/BlogIdeaList-SwiftUI/HEAD/BlogIdeaList-SwiftUI/EditView.swift -------------------------------------------------------------------------------- /BlogIdeaList-SwiftUI/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewcbancroft/BlogIdeaList-SwiftUI/HEAD/BlogIdeaList-SwiftUI/Info.plist -------------------------------------------------------------------------------- /BlogIdeaList-SwiftUI/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewcbancroft/BlogIdeaList-SwiftUI/HEAD/BlogIdeaList-SwiftUI/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /BlogIdeaList-SwiftUI/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewcbancroft/BlogIdeaList-SwiftUI/HEAD/BlogIdeaList-SwiftUI/SceneDelegate.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewcbancroft/BlogIdeaList-SwiftUI/HEAD/README.md --------------------------------------------------------------------------------