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

discontinued
outdated

BankAccountNumberFieldWidget, DdMmYyyyFieldWidget, MmDdYyyyFieldWidget, MoneyFieldWidget

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

BankAccountNumberFieldWidget, DdMmYyyyFieldWidget, MmDdYyyyFieldWidget, MoneyFieldWidget

Homepage

License

unknown (LICENSE)

Dependencies

flutter, flutter_web_plugins

More

Packages that depend on flutter_custom_form_component