SwiftUI: Difference between revisions
Jump to navigation
Jump to search
Line 80: | Line 80: | ||
{| | {| | ||
| valign="top" | | | valign="top" | | ||
* [https://medium.com/better-programming/using-the-preferencekey-protocol-to-align-views-7f3ae32f60fc Using the PreferenceKey Protocol] | |||
* [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 22:37, 21 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()
}
}