The brief for this was to present a ML model (or a potential one) and how it would work in practise. I chose a autonomous self driving dataset and how it would work in an Apple environment
Diploma in apple development
A year I took in between year 2 and year 3 to explore apple coding and designing apps for apple.
Spatial One final presentation
The brief for this unit was to create a concept for a visionOS app. Our team created this:
Coding 1 final:
Project Brief: Create a apple VisionOS app with 5 tabview Pages
Sample code that I wrote:
(SwiftUI ContentView)
import SwiftUI
struct ContentView: View {
var body: some View {
TabView {
ActionView()
.tabItem {
Label("Action", systemImage: "bolt.fill")
}
ComedyView()
.tabItem {
Label("Comedy", systemImage: "face.smiling.fill")
}
DramaView()
.tabItem {
Label("Drama", systemImage: "theatermasks.fill")
}
HorrorView()
.tabItem {
Label("Horror", systemImage: "moon.stars.fill")
}
SciFiView()
.tabItem {
Label("Sci-Fi", systemImage: "airplane")
}
}
}
}
#Preview {
ContentView()
}