Skip to content

Instantly share code, notes, and snippets.

@ashishkakkad8
Created August 24, 2022 18:03
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 ashishkakkad8/5e2ee98b03592762b15359bb842a29d1 to your computer and use it in GitHub Desktop.
Save ashishkakkad8/5e2ee98b03592762b15359bb842a29d1 to your computer and use it in GitHub Desktop.
PassDataSwiftUI
//
// SecondView.swift
// PassDataSwiftUI
//
// Created by Kode on 24/08/22.
//
import SwiftUI
struct SecondView: View {
var data = ""
var body: some View {
Text(data)
}
}
struct SecondView_Previews: PreviewProvider {
static var previews: some View {
SecondView()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment