flutter
multi-image picker
flutter plugin that allows you to display multi-image picker on ios and android.
ios
![[2025] Flutter multi-image picker (2 OS) flutter plugin that allows you to display multi-image picker on ios and android](https://i0.wp.com/flutterawesome.com/content/images/2018/10/multi_image_picker.jpg?w=770&ssl=1)
android
![[2025] Flutter multi-image picker (2 OS) flutter plugin that allows you to display multi-image picker on ios and android](https://i0.wp.com/flutterawesome.com/content/images/2018/10/multi_image_picker3.jpg?w=770&ssl=1)
usage
first you need to add the plugin to your project.
ios
you need to add those strings to your info.plist file in order the plugin to work:
<key>nsphotolibraryusagedescription</key>
<string>example usage description</string>
<key>nscamerausagedescription</key>
<string>example usage description</string>
android
you need to request those permissions in androidmanifest.xml in order the plugin to work:
<uses-permission android:name="android.permission.write_external_storage" />
<uses-permission android:name="android.permission.read_external_storage" />
for example code usage, please see here
theming and localization
you can customize different parts of the gallery picker. for reference see below the available options for the different platforms:
customization on android
customization on ios
api
todo
- [x] add support for more plugin specific options for ios and android, that allows more customization
- [x] improve docs
- [ ] allow choosing videos
Comments are closed.