-1

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")
        }
        ...
    }
}

1 Answers1

0

There is no possiblity to make it select more than one item. You can continue your research here: https://duckduckgo.com/?q=multiple+image+picker+swiftui&t=ffcm&ia=web https://www.pawelmadej.com/post/multi-select-picker-for-swiftui/

Arturo
  • 3,254
  • 2
  • 22
  • 61