Created
July 12, 2020 09:01
-
-
Save prafullakumar/fbb5196e1d47aa31888cb98e4fa84525 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
struct PhotoPicker: UIViewControllerRepresentable { | |
func makeUIViewController(context: Context) -> PHPickerViewController { | |
//init PHPickerViewController here | |
} | |
func updateUIViewController(_ uiViewController: PHPickerViewController, context: Context) { | |
} | |
func makeCoordinator() -> Coordinator { | |
//set delegates with Coordinator | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment