SwiftUI: Difference between revisions
Jump to navigation
Jump to search
Line 109: | Line 109: | ||
* [https://www.amerhukic.com/finding-the-custom-url-scheme-of-an-ios-app Finding the custom URL scheme] | * [https://www.amerhukic.com/finding-the-custom-url-scheme-of-an-ios-app Finding the custom URL scheme] | ||
* [https://www.objc.io/blog/2019/06/25/swiftui-data-loading/ Loading Data Asynchronously] | * [https://www.objc.io/blog/2019/06/25/swiftui-data-loading/ Loading Data Asynchronously] | ||
* [https://stackoverflow.com/questions/56691630 <code>@State</code> variable initialization] | |||
* [https://stackoverflow.com/questions/57415086 Passing data between Views] | * [https://stackoverflow.com/questions/57415086 Passing data between Views] | ||
* [http://www.appsdeveloperblog.com/http-post-request-example-in-swift POST Request Example] | * [http://www.appsdeveloperblog.com/http-post-request-example-in-swift POST Request Example] |
Revision as of 22:57, 16 March 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()
}
}