mirror of
https://github.com/Iconica-Development/flutter_form_wizard.git
synced 2025-05-19 19:03:47 +02:00
feature (add): flutter multiline text field can now have an initial value
This commit is contained in:
parent
775f91eb4d
commit
befb9531cc
3 changed files with 6 additions and 2 deletions
|
@ -109,3 +109,6 @@
|
||||||
|
|
||||||
## 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
|
|
@ -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,
|
||||||
|
|
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue