mirror of
https://github.com/Iconica-Development/flutter_form_wizard.git
synced 2025-05-19 10:53:49 +02:00
Merge pull request #34 from Iconica-Development/fix/show-icon
fix: pass on the show icon property to flutter form input date time w…
This commit is contained in:
commit
1490b6f906
3 changed files with 6 additions and 2 deletions
|
@ -99,3 +99,6 @@
|
||||||
|
|
||||||
## 6.1.6 - October 26th 2023
|
## 6.1.6 - October 26th 2023
|
||||||
- Add enabled property to FlutterFormInputPlainText and FlutterFormInputDateTime
|
- Add enabled property to FlutterFormInputPlainText and FlutterFormInputDateTime
|
||||||
|
|
||||||
|
## 6.1.7 - November 1st 2023
|
||||||
|
- pass on the show icon property to flutter form input date time widget
|
|
@ -51,6 +51,7 @@ class FlutterFormInputDateTime extends FlutterFormInputWidget<String> {
|
||||||
|
|
||||||
return input.FlutterFormInputDateTime(
|
return input.FlutterFormInputDateTime(
|
||||||
enabled: enabled,
|
enabled: enabled,
|
||||||
|
showIcon: showIcon,
|
||||||
onTapEnabled: onTapEnabled,
|
onTapEnabled: onTapEnabled,
|
||||||
label: label,
|
label: label,
|
||||||
icon: icon,
|
icon: icon,
|
||||||
|
|
|
@ -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.1.6
|
version: 6.1.7
|
||||||
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