mirror of
https://github.com/Iconica-Development/flutter_form_wizard.git
synced 2025-05-19 10:53:49 +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
|
@ -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
|
|
@ -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,
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue