maplibre-rs/apple/xcode/Shared/exampleApp.swift
Max Ammann 0512e536f9
Refactor XCode project and build xcframework (#15)
Refactored xcode project into a framework.

* This framework can be bundled into an xcframework
* The xcframework can be added to a swift package

Deployment happens through #21
2022-04-23 14:36:51 +02:00

10 lines
124 B
Swift

import SwiftUI
import maplibre_rs
@main
struct App {
static func main() {
maplibre_rs.MapLibre.start();
}
}