flutter_material_pickers 2.0.1
flutter_material_pickers: ^2.0.1 copied to clipboard
A flutter package for easily and consistently showing material themed picker dialogs.
Releases #
2.0.1 - 2021-03-22 #
- allow null initial value for RadioPicker
- allow null initial value for CheckBoxPicker
- allow null initial value for NumberRicker
- upgraded to null save colorpicker
2.0.0 - 2021-03-12 #
- Bumped SDK restriction from 2.7.0 to 2.12.0 (new minimum).
- Removed the meta package dependency since the @required annotation has been replaced and is not needed for named parameters anymore.
- Added the required modifier to any required parameters in widgets and/or functions.
- Changed the types of any optional named parameters to be nullable (ex. from String to String?).
- Removed unnecessary not null asserts for required parameters as package users cannot send nullable values for these anymore.
- Replaced the DynamicTheme dependency with the actively maintained AdaptiveTheme in order to make sure the package supports sound null safety and is not in mixed mode (ie. depends on packages with no null safety).
- Replaced deprecated widget FlatButton with the replacement ElevatedButton where applicable (no changes to api surface of the package were made).
- changed the datePicker dialog to use the ResponsiveDialog so it behaves like the other widgets
1.9.2 - 2021-02-08 #
- added support for
intl
nullsafety.2
1.9.1 - 2021-01-11 #
- updated formatting to pass static analysis tests
1.9.0 - 2021-01-05 #
- implemented step feature on MaterialNumberPicker (thanks Enough7)
- upgraded to latest dependencies
1.8.1 - 2020-11-10 #
- updated file_picker to version 2.0.12
- Fix allowedExtensions on file picker [CoolONEOfficial]
1.8.0 - 2020-10-01 #
- Upgraded to 2.0 version of
file_picker
- confirmed compatibility with Web and added web to the example
1.7.4 - 2020-08-27 #
- fixed null error in scrollpicker
1.7.3 - 2020-08-26 #
- updated 'showMaterialResponsiveDialog' to property capture 'maxShortSide' parameter.
- fixed null error in numberpicker
1.7.2 - 2020-07-27 #
- added
showDivider
option to hide the divider on the scroll picker
1.7.1 - 2020-07-21 #
- removed pub.flutter-io.cn issue in readme.md with email
- exposed FileType enum from file_picker
1.7.0 - 2020-07-20 #
- changed file picker from file_picker_cross to file_picker for better compatibility
- added
onConfirmed
event to all dialog helpers
1.6.0 - 2020-07-08 #
- added ability to customize
confirmText
andcancelText
- added
onCancelled
handler to all helpers - updated dependencies
1.5.4 5/25/2020 #
- added
hideButtons
toResponsiveDialog
1.5.3 5/24/2020 #
- added
showMaterialFilePicker
which wrapsfile_picker_cross
1.5.2 5/20/2020 #
- changed
ScrollPicker
to useListWheelScrollView
internally so it functions better.
1.5.1 5/15/2020 #
- fixed positioning bug in selection picker with only two items
1.5.0 5/15/2020 #
- constrained max sizes for dialogs so they don't go full screen
- verified correct functionality on flutter web
1.4.0 5/5/2020 #
- changed the theming elements to properly match Material design elements (see readme example);
- fixed centering issue on scroll picker
1.3.0 4/16/2020 #
- Upgraded dependency to latest
flutter_colorpicker
1.2.0 2/13/2020 #
- Added
headerTextColor
parameter to each helper method
1.1.0 2/13/2020 #
- Added ability to control several colors to each show method
1.0.0 2/13/2020 #
- Initial Release