From 2b57f3871cebee836a9cd918d7a114baf6270e6b Mon Sep 17 00:00:00 2001 From: Sakurahihih <23217391@life.hkbu.edu.hk> Date: Tue, 15 Oct 2024 23:43:57 +0800 Subject: [PATCH] Event finish --- Assignment1_IOS/EventLocationDetailView.swift | 18 ++++++++++++++++++ Assignment1_IOS/EventLocationView.swift | 18 ++++++++++++++++++ Assignment1_IOS/EventsView.swift | 18 ++++++++++++++++++ 3 files changed, 54 insertions(+) create mode 100644 Assignment1_IOS/EventLocationDetailView.swift create mode 100644 Assignment1_IOS/EventLocationView.swift create mode 100644 Assignment1_IOS/EventsView.swift 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() +}