flutter_media_picker/CHANGELOG.md
Joey Boerwinkel bd53221bdc fix: remove null check operator and perform appropriate null check
Now it is no longer possible to break the widget by providing a null value to the disabledPickers property.
Making the property to a non-nullable list would remove more complexity, but introduces breaking changes.
2023-06-19 11:01:19 +02:00

75 lines
1.4 KiB
Markdown

## 0.6.2
- Remove null check operator for disabledPickers and perform appropriate null check
## 0.6.1
- Gave disabledPickers a default value to stop null errors.
## 0.6.0
- Made compatible with flutter 3.10
## 0.5.0
- Added the ability to disable certain pickers in the code
## 0.4.0
- Bump `flutter_form_wizard` to version 6.0.0
- Remove unnecessary `riverpod` dependency
## 0.3.5
- Fixed left button
## 0.3.4
- Fixed audio recording that would start without permissions
## 0.3.3
- Added optional left button on audio picker
## 0.3.2
- Fixed an incorrect import on web
## 0.3.1
- Added feature change the loading icon color.
## 0.3.0
- Added mimeType to MediaPickerResult.
- Made mimeType and fileName parameters of MediaPickerResult public so they can be changed if wanted.
- Removed fileType from MediaPickerResult since fileName already includes it.
- Added audio play button on result page so it doesn't play automatically anymore.
## 0.2.0
- Added option to select a file
- Added file_picker package for file picking possibility
- Inputs now have widgets so any widget can be used in the media picker now.
- Translated the example to English
## 0.1.1
- Updated flutter_form version to 2.0.1
## 0.1.0
- Ability to set styling for the audio input.
## 0.0.3
- Fixed bug where onTap was not working when header is set
## 0.0.2
- Updated flutter_form version
## 0.0.1
- Initial port