iOS simple controller works

This commit is contained in:
Piv
2020-05-06 21:44:42 +09:30
parent 9376bd70ed
commit 4b3b960d22
7 changed files with 90 additions and 97 deletions

View File

@@ -15,16 +15,26 @@ struct ContentView: View {
NavigationLink(destination: SimpleControllerView()){
Text("Simple Controller")
}
// TODO: Change these when other functionality is implemented
NavigationLink(destination: SimpleControllerView()){
Text("Gamepad controller")
}
NavigationLink(destination: SimpleControllerView()){
Text("SLAM Controller")
}
NavigationLink(destination: SimpleControllerView()){
Text("Tracking Controller")
Text("Lidar Tracking Controller")
}
NavigationLink(destination: SimpleControllerView()){
Text("Mono Camera Tracking Controller")
}
NavigationLink(destination: SimpleControllerView()){
Text("Hybrid Lidar Camera Tracking Controller")
}
}
.navigationBarTitle(Text("Controllers"))
}
.navigationViewStyle(StackNavigationViewStyle())
}
}