Skip to content

Instantly share code, notes, and snippets.

@dimebt
Created September 8, 2020 15:48
Show Gist options
  • Save dimebt/2d182990ad4c70deccb39bf55889f12b to your computer and use it in GitHub Desktop.
Save dimebt/2d182990ad4c70deccb39bf55889f12b to your computer and use it in GitHub Desktop.
struct ContentView: View {
@State var transactionId: String = "Not set yet!"
var body: some View {
NavigationView {
WWidgetPreview(transaction: Helper.getTransaction(from: transactionId))
.onOpenURL(perform: { (transactionId) in
self.transactionId = transactionId.absoluteString
})
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment