Flutter plugin for selecting multiple images from the Android and iOS image library, taking new pictures with the camera, and edit them before using such as rotating, cropping, adding sticker/filters.
BSD 3-Clause "New" or "Revised" License
111
stars
51
forks
source link
NEW FEATURE: Platform aware confirmation dialogs #31
Currently advance_image_picker always uses Material style confirmation dialogs. This is not ideal for iPhone/iPad users, since iOS users feel more at home when dialogs use native looking confirmation dialog style.
Add a new feature that by default uses:
Cupertino style confirmation dialogs on iOS and macOS.
Material style confirmation dialogs on all other platforms.
A configuration option would be provided that offers:
dialogStyle: DialogStyle.platform - Platform adaptive. This would be the new default style! Minor style break with past versions!
dialogStyle: DialogStyle.materail - Material style. Currently this is always used and the only choice.
Currently advance_image_picker always uses Material style confirmation dialogs. This is not ideal for iPhone/iPad users, since iOS users feel more at home when dialogs use native looking confirmation dialog style.
Add a new feature that by default uses:
A configuration option would be provided that offers:
dialogStyle: DialogStyle.platform
- Platform adaptive. This would be the new default style! Minor style break with past versions!dialogStyle: DialogStyle.materail
- Material style. Currently this is always used and the only choice.dialogStyle: DialogStyle.cupertino
- Cupertino/iOS style.This issue is summitted so it can be marked in this issue when it is being worked on. I might work on it myself later.