Created
June 4, 2019 18:30
-
-
Save balrajOla/44a6857ec069c33a0f5f20fa7ecf7396 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import SwiftUI | |
import PlaygroundSupport | |
struct ContainerView: View { | |
var body: some View { | |
VStack() { | |
Text ("Hello World") | |
.font(.title) | |
.color(.blue) | |
Text ("How are you?") | |
.bold() | |
.color(.blue) | |
} | |
} | |
} | |
PlaygroundPage.current.liveView = UIHostingController(rootView: ContainerView()) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment