Reconfigure iOS project to not be weird.

This commit is contained in:
Piv
2020-05-03 17:21:15 +09:30
parent a09aa4a627
commit f344f37642
20 changed files with 82 additions and 89 deletions

View File

@@ -0,0 +1,35 @@
//
// ContentView.swift
// CarController
//
// Created by Michael Pivato on 22/2/20.
// Copyright © 2020 Michael Pivato. All rights reserved.
//
import SwiftUI
struct ContentView: View {
var body: some View {
NavigationView{
List{
NavigationLink(destination: SimpleControllerView()){
Text("Simple Controller")
}
// TODO: Change these when other functionality is implemented
NavigationLink(destination: SimpleControllerView()){
Text("SLAM Controller")
}
NavigationLink(destination: SimpleControllerView()){
Text("Tracking Controller")
}
}
}
}
}
struct ContentView_Previews: PreviewProvider {
static var previews: some View {
ContentView()
}
}