Skip to content

Instantly share code, notes, and snippets.

@sturdysturge
Created February 7, 2021 00:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sturdysturge/36c9d8905da6631df83f582ac3c4388b to your computer and use it in GitHub Desktop.
Save sturdysturge/36c9d8905da6631df83f582ac3c4388b to your computer and use it in GitHub Desktop.
import SwiftUI
struct ContentView: View {
@State var html = ""
var body: some View {
VStack {
WebView(htmlString: $html)
TextEditor(text: $html)
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment