SwiftUI: Difference between revisions
Jump to navigation
Jump to search
Line 81: | Line 81: | ||
| valign="top" | | | valign="top" | | ||
* [https://medium.com/better-programming/using-the-preferencekey-protocol-to-align-views-7f3ae32f60fc Using the PreferenceKey Protocol] | * [https://medium.com/better-programming/using-the-preferencekey-protocol-to-align-views-7f3ae32f60fc Using the PreferenceKey Protocol] | ||
* [https://www.raywenderlich.com/4503153-how-to-create-a-splash-screen-with-swiftui Splash Screen With SwiftUI] | |||
* [https://stackoverflow.com/questions/56631892 Add a SwiftUI View to UIKit] | * [https://stackoverflow.com/questions/56631892 Add a SwiftUI View to UIKit] | ||
* [https://swiftwithmajid.com/2020/01/15/the-magic-of-view-preferences-in-swiftui/ SwiftUI Preferences] | * [https://swiftwithmajid.com/2020/01/15/the-magic-of-view-preferences-in-swiftui/ SwiftUI Preferences] |
Revision as of 01:28, 22 January 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()
}
}