How can I include the BSImagePicker in this construct and save the images in an array?
import SwiftUI
import BSImagePicker
struct ContentView: View {
...
var body: some View {
...
Button(action: {
//Here the Image Picker should be called
}) {
Image(systemName: "camera")
}
...
}
}