12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- //
- // ContentView.swift
- // Landmarks
- //
- // Created by Admin on 06.10.2020.
- //
- import SwiftUI
- struct ContentView: View {
- var body: some View {
- VStack{
- MapView()
- .edgesIgnoringSafeArea(.top)
- .frame(height: 300)
-
- CircleImage()
- .offset(y:-130)
- .padding(.bottom, -130)
-
- VStack(alignment: .leading) {
- Text("Turtle Rock")
- .font(/*@START_MENU_TOKEN@*/.title/*@END_MENU_TOKEN@*/)
- HStack {
- Text("Joshua Tree National Park")
- .font(.subheadline)
- Spacer()
- Text("California")
- .font(.subheadline)
- }
- }
- .padding()
-
- Spacer()
- }
- }
- }
- struct ContentView_Previews: PreviewProvider {
- static var previews: some View {
- ContentView()
- }
- }
|