SwiftUI meets MapKit is an iOS demo application.
State: development
Point People: @minikin
- iOS 13.0+ / macOS 10.14.5+
- Xcode 11.6+
- Swift 5.2+
In the project I don't use any third party dependencies.
git clone https://github.com/minikin/swiftui-mapkit.git && cd swiftui-mapkit
To run the app from Xcode, open the file SwiftUIMapKit.xcodeproj
and run the Scheme SwiftUIMapKit
.
Running from Xcode always launches the app with the build configuration Debug
.
In the project folder, there are a few important files:
SwiftUIMapKit.xcodeproj
: This is the main Xcode workspace file. To open the project with Xcode, always use this file instead of the project file.
Inside the Xcode project, there are a few separations:
SwiftUIMapKitServices
Swift Package- Contains foundation sources that are used in multiple components of the app, like a Networking client.
SwiftUIMapKit
app target- The app target uses
SwiftUIMapKitServices
- Inside of the app target, code is separated further with groups
- There is a group
App
with general app parts used by multiple features, like actions, reducers - For each feature (AllVehicles, VehicleDetails, ...) there is an additional group that contains everything that is only necessary for this feature.
- There is a group
- The app target uses
The SwiftUIMapKit project contains one unit test target: SwiftUIMapKitTests
.
- To run all tests from Xcode, select the Scheme
SwiftUIMapKit
and press CMD + U or select test from Xcode's dropdown.
Post issues and feature requests on the GitHub issue tracker.
ItemsDataSource is released under the MIT license. See LICENSE for details.