SwiftUI: Difference between revisions

From Chorke Wiki
Jump to navigation Jump to search
Line 42: Line 42:


| valign="top" |
| valign="top" |
* [https://stackoverflow.com/questions/56514998 Find Images by System Name]
* [https://developer.apple.com/design/human-interface-guidelines/ios/icons-and-images/image-size-and-resolution/ Image Size and Resolution]
* [https://developer.apple.com/design/human-interface-guidelines/ios/icons-and-images/image-size-and-resolution/ Image Size and Resolution]
* [https://developer.apple.com/design/human-interface-guidelines/ios/icons-and-images/launch-screen/ Launch Screen]
* [https://developer.apple.com/design/human-interface-guidelines/ios/icons-and-images/launch-screen/ Launch Screen]

Revision as of 02:04, 29 December 2019

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