From 4d9f7604185eb055adc73a9d7d7c2836290064a8 Mon Sep 17 00:00:00 2001 From: Tim Date: Fri, 23 Dec 2022 15:10:01 +0100 Subject: [PATCH] fix: comments Jorian --- CHANGELOG.md | 40 +++++++++++----------- example/lib/media_picker_check.dart | 4 +-- example/lib/media_picker_icon_options.dart | 12 +++---- example/lib/media_picker_text_options.dart | 10 +++--- lib/src/abstracts/media_picker_input.dart | 2 +- lib/src/enums/button_type.dart | 4 +++ lib/src/enums/enums.dart | 4 +++ lib/src/inputs/input_audio.dart | 4 +-- lib/src/inputs/input_file.dart | 8 +++-- lib/src/inputs/input_photo.dart | 2 +- lib/src/inputs/input_text.dart | 2 +- lib/src/inputs/input_video.dart | 2 +- lib/src/widgets/icon_button_with_text.dart | 6 +++- lib/src/widgets/widgets.dart | 4 +++ 14 files changed, 61 insertions(+), 43 deletions(-) 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