SwiftUI: Difference between revisions

From Chorke Wiki
Jump to navigation Jump to search
Line 93: Line 93:
| valign="top" |
| valign="top" |
* [https://www.hackingwithswift.com/quick-start/swiftui/how-to-place-content-outside-the-safe-area Place View outside of the Safe Area]
* [https://www.hackingwithswift.com/quick-start/swiftui/how-to-place-content-outside-the-safe-area Place View outside of the Safe Area]
* [https://stackoverflow.com/questions/56760335 SwiftUI Round Specific Corners]


|}
|}

Revision as of 22:21, 8 February 2020

ContentView

import SwiftUI

struct ContentView: View {
    var body: some View {
        VStack(alignment: .leading) {
            Text("Turtle Rock")
                .font(.title)
            HStack {
                Text("Joshua Tree National Park")
                    .font(.subheadline)
                Spacer()
                Text("California")
                    .font(.subheadline)
            }
        }
        .padding()
    }
}

struct ContentView_Preview: PreviewProvider {
    static var previews: some View {
        ContentView()
    }
}

References