diff --git a/CHANGELOG.md b/CHANGELOG.md index c03e45c..37c9a83 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,23 +1,3 @@ -## 0.0.1 - -- Initial port - -## 0.0.2 - -- Updated flutter_form version - -## 0.0.3 - -- Fixed bug where onTap was not working when header is set - -## 0.1.0 - -- Ability to set styling for the audio input. - -## 0.1.1 - -- Updated flutter_form version to 2.0.1 - ## 0.2.0 - Added option to select a file - Added file_picker package for file picking possibility @@ -26,3 +6,23 @@ - Icons are customizable - When using standard icon buttons delivered with this package you can set the icon text, icon text size, icon and icon size - 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 diff --git a/example/lib/media_picker_check.dart b/example/lib/media_picker_check.dart index d04c084..f366a57 100644 --- a/example/lib/media_picker_check.dart +++ b/example/lib/media_picker_check.dart @@ -70,7 +70,7 @@ class _MediaCheckPageState extends State { widget.cancel(); formController.autoNextStep(); }, - child: const Text("Share"), + child: const Text('Share'), ), ), ), @@ -140,7 +140,7 @@ class _MediaCheckPageState extends State { ), Expanded( child: FlutterFormInputMultiLine( - hint: "Add description...", + hint: 'Add description...', maxCharacters: 300, controller: descriptionController), ), diff --git a/example/lib/media_picker_icon_options.dart b/example/lib/media_picker_icon_options.dart index d306058..316353f 100644 --- a/example/lib/media_picker_icon_options.dart +++ b/example/lib/media_picker_icon_options.dart @@ -65,10 +65,10 @@ class _MediaPickerIconOptionsState extends ConsumerState