Skip to content

Commit

Permalink
Event finish
Browse files Browse the repository at this point in the history
  • Loading branch information
Sakurahihih committed Oct 15, 2024
1 parent f926008 commit 2b57f38
Show file tree
Hide file tree
Showing 3 changed files with 54 additions and 0 deletions.
18 changes: 18 additions & 0 deletions Assignment1_IOS/EventLocationDetailView.swift
Original file line number Diff line number Diff line change
@@ -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()
}
18 changes: 18 additions & 0 deletions Assignment1_IOS/EventLocationView.swift
Original file line number Diff line number Diff line change
@@ -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()
}
18 changes: 18 additions & 0 deletions Assignment1_IOS/EventsView.swift
Original file line number Diff line number Diff line change
@@ -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()
}

0 comments on commit 2b57f38

Please sign in to comment.