feature (add): flutter multiline text field can now have an initial value

This commit is contained in:
Tim 2024-01-12 10:26:11 +01:00
parent 775f91eb4d
commit befb9531cc
3 changed files with 6 additions and 2 deletions

View file

@ -108,4 +108,7 @@
- Bump `flutter_input_library` to version 2.5.0 - Bump `flutter_input_library` to version 2.5.0
## 6.2.0 - December 14th 2023 ## 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, label: label,
hint: hint, hint: hint,
focusNode: focusNode, focusNode: focusNode,
initialValue: controller.value,
maxCharacters: maxCharacters, maxCharacters: maxCharacters,
onChanged: controller.onChanged, onChanged: controller.onChanged,
onSaved: controller.onSaved, onSaved: controller.onSaved,

View file

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