howljs / hl_image_picker

Simplify media selection, cropping, and camera functionality in your Flutter app. Choose images/videos from the library, crop images, and capture new photos/videos with ease.
https://pub.dev/packages/hl_image_picker
24 stars 14 forks source link

openPicker() has not been implemented. #43

Open Benkex opened 1 month ago

Benkex commented 1 month ago

Where should openPicker() be implemented?

In platform_interface_hl_image_picker.dart there's only this:

Future<List<HLPickerItem>> openPicker({
  List<String>? selectedIds,
  HLPickerOptions? pickerOptions,
  bool? cropping,
  HLCropOptions? cropOptions,
  LocalizedImagePicker? localized,
}) {
  throw UnimplementedError('openPicker() has not been implemented.');
}

Am I maybe missing a library requirement?