diff --git a/starter/PHPickerDemo/PHPickerDemo/PhotoPicker.swift b/starter/PHPickerDemo/PHPickerDemo/PhotoPicker.swift index c18a58f..59c460e 100644 --- a/starter/PHPickerDemo/PHPickerDemo/PhotoPicker.swift +++ b/starter/PHPickerDemo/PHPickerDemo/PhotoPicker.swift @@ -5,4 +5,21 @@ // Created by Gabriel Theodoropoulos. // -import Foundation +import SwiftUI //use the UIViewController +import PhotosUI //Access the PHPickerViewController class + +struct PhotoPicker: UIVewControllerRepresentable { + typealias UIViewControllerType = PHPickerViewController + + func makeUIViewController(context: Context) -> PHPickerViewController { + + } + + func updateUIViewController(_ uiVewController: PHPickerViewController, context: Context) { + + + } + +} + +