flutter_custom_form_component 0.0.2 copy "flutter_custom_form_component: ^0.0.2" to clipboard
flutter_custom_form_component: ^0.0.2 copied to clipboard

discontinued
outdated

Custom UI components for creating form pages. It will provide much more widgets for supporting common form, i.e. MoneyFieldWidget, BankAccountNumberFieldWidget, and so on. Kindly trying the existing w [...]

flutter_custom_form_component #

I have some custom UI components for supporting form in a page. I will provide much more widgets related to form components, i.e. MoneyFieldWidget, BankAccountNumberFieldWidget, and so on. Kindly trying the existing widgets which help users typing a date field, i.e. DdMmYyyyFieldWidget and MmDdYyyyFieldWidget.

Getting Started #

dependencies:
  flutter_custom_form_component: ^0.0.2
SizedBox(
  child: DdMmYyyyFieldWidget(
    hint: 'DD / MM / YYYY', // Optional. It has default value.
    isValid: true, // Optional. For your own validation logic.
    onChanged: (final int? year, final int? month, final int? day) {
      // You can get the values here.
    },
    separator: ' / ', // Optional. It has default value.
    ),
  height: 52.0) // Wrap the height.
1
likes
0
pub points
39%
popularity

Publisher

verified publisherhendrickprasdito.com

Custom UI components for creating form pages. It will provide much more widgets for supporting common form, i.e. MoneyFieldWidget, BankAccountNumberFieldWidget, and so on. Kindly trying the existing widgets that support user type a date, i.e. DdMmYyyyFieldWidget and MmDdYyyyFieldWidget.

Homepage

License

unknown (LICENSE)

Dependencies

flutter, flutter_web_plugins

More

Packages that depend on flutter_custom_form_component