Merge pull request #37 from Iconica-Development/feature/pass-on-initial-value-to-multiline-text-field

feature (add): flutter multiline text field can now have an initial value
This commit is contained in:
Freek van de Ven 2024-01-12 10:39:10 +01:00 committed by GitHub
commit 4f5bd1c22c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 2 deletions

View file

@ -108,4 +108,7 @@
- Bump `flutter_input_library` to version 2.5.0
## 6.2.0 - December 14th 2023
- Pass on the `textCapitalization` property to FlutterFormPlainText and FlutterFormMultiLine
- Pass on the `textCapitalization` property to FlutterFormPlainText and FlutterFormMultiLine
## 6.2.1 - January 12th 2024
- Pass on the `initialValue` property to FlutterFormMultiLine

View file

@ -115,6 +115,7 @@ class FlutterFormInputMultiLine extends StatelessWidget {
label: label,
hint: hint,
focusNode: focusNode,
initialValue: controller.value,
maxCharacters: maxCharacters,
onChanged: controller.onChanged,
onSaved: controller.onSaved,

View file

@ -1,6 +1,6 @@
name: flutter_form_wizard
description: A new Flutter package project.
version: 6.2.0
version: 6.2.1
homepage: https://github.com/Iconica-Development/flutter_form_wizard
publish_to: none