diff --git a/Assignment1_IOS/EventLocationDetailView.swift b/Assignment1_IOS/EventLocationDetailView.swift new file mode 100644 index 0000000..e0e97a3 --- /dev/null +++ b/Assignment1_IOS/EventLocationDetailView.swift @@ -0,0 +1,18 @@ +// +// EventLocationDetailView.swift +// Assignment1_IOS +// +// Created by Sam Liu on 14/10/2024. +// + +import SwiftUI + +struct EventLocationDetailView: View { + var body: some View { + Text(/*@START_MENU_TOKEN@*/"Hello, World!"/*@END_MENU_TOKEN@*/) + } +} + +#Preview { + EventLocationDetailView() +} diff --git a/Assignment1_IOS/EventLocationView.swift b/Assignment1_IOS/EventLocationView.swift new file mode 100644 index 0000000..4bcd4fa --- /dev/null +++ b/Assignment1_IOS/EventLocationView.swift @@ -0,0 +1,18 @@ +// +// EventLocationView.swift +// Assignment1_IOS +// +// Created by Sam Liu on 14/10/2024. +// + +import SwiftUI + +struct EventLocationView: View { + var body: some View { + Text(/*@START_MENU_TOKEN@*/"Hello, World!"/*@END_MENU_TOKEN@*/) + } +} + +#Preview { + EventLocationView() +} diff --git a/Assignment1_IOS/EventsView.swift b/Assignment1_IOS/EventsView.swift new file mode 100644 index 0000000..68ef27d --- /dev/null +++ b/Assignment1_IOS/EventsView.swift @@ -0,0 +1,18 @@ +// +// EventsView.swift +// Assignment1_IOS +// +// Created by Sam Liu on 14/10/2024. +// + +import SwiftUI + +struct EventsView: View { + var body: some View { + Text(/*@START_MENU_TOKEN@*/"Hello, World!"/*@END_MENU_TOKEN@*/) + } +} + +#Preview { + EventsView() +}