|
@@ -9,6 +9,15 @@ import SwiftUI
|
|
|
|
|
|
struct ContentView: View {
|
|
struct ContentView: View {
|
|
var body: some View {
|
|
var body: some View {
|
|
|
|
+ VStack{
|
|
|
|
+ MapView()
|
|
|
|
+ .edgesIgnoringSafeArea(.top)
|
|
|
|
+ .frame(height: 300)
|
|
|
|
+
|
|
|
|
+ CircleImage()
|
|
|
|
+ .offset(y:-130)
|
|
|
|
+ .padding(.bottom, -130)
|
|
|
|
+
|
|
VStack(alignment: .leading) {
|
|
VStack(alignment: .leading) {
|
|
Text("Turtle Rock")
|
|
Text("Turtle Rock")
|
|
.font(/*@START_MENU_TOKEN@*/.title/*@END_MENU_TOKEN@*/)
|
|
.font(/*@START_MENU_TOKEN@*/.title/*@END_MENU_TOKEN@*/)
|
|
@@ -21,6 +30,9 @@ struct ContentView: View {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
.padding()
|
|
.padding()
|
|
|
|
+
|
|
|
|
+ Spacer()
|
|
|
|
+ }
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|