flutter_input 1.0.0 copy "flutter_input: ^1.0.0" to clipboard
flutter_input: ^1.0.0 copied to clipboard

discontinued
outdated

This package provides widgets for input fields. Each widget can be used standalone or within a form. A form can provide enabling, validation, initial values and saving for all fields.

Flutter Input Widgets - Standalone or within a Form → flutter_input #

This package provides input widgets (fields) to manipulate basic data types and an InputForm. Each input widget can be used standalone or attached to the form. All input widgets share a common set of parameters. A list of validators (see below) can be attached to an input widget.

Input Widgets #

The following input widgets are included. See section 'Development' below for building your own input widget.

  • [InputCalendar] - A highly customizable date picker with month selection and slider and a text input for the year
  • [InputCheckbox] - Checkbox for data type bool
  • [InputDate] - Calendar based selection for data type DateTime (date part only)
  • [InputDateTime] - Wheels for data type DateTime can be customized for date only, time only or both
  • [InputDropDown
  • [InputFavorite] - A favorite button with selectable icon for data type bool
  • [InputKeyboard] - Text input for data type String, int or double
  • [InputRadio
  • [InputRating] - Rating widget with selectable icons and a range slider for data type int
  • [InputSlider] - Slider for data type double between a minimum and maximum value
  • [InputSpinner] - Spinner with buttons for data type double to decrease or increase a value between a minimum and maximum
  • [InputSwitch] - Switch for data type bool

Usage #

For a complete example see example/main.dart.

All input widgets share a common set of parameters. All parameters are named and optional.

  • Key key
  • bool autovalidate = false - automatically validates
  • InputDecoration decoration - e.g. for a label
  • bool enabled - to protect the field against changes. Overrides setting through the Form
  • T initialValue - to set the fields initial value. Overrides using the value from the forms map.
  • ValueSetter
  • ValueSetter
  • String path - to access the form map
  • List

Validators #

The following validators can be given to parameter [InputField.validators] of an input widget. Each validator accepts the optional parameter message to set an individual error message if the validation fails.

  • After(DateTime date) - validates that the field value is after date
  • Before(DateTime date) - validates that the field value is before date
  • Future - validates that the DateTime field value lies in the future
  • Max(num maxVal) - validates that the num field value is not larger than maxVal
  • MaxLen(num maxLen) - validates that the length of the String field value is not longer than maxLen
  • Min(num minVal) - validates that the num field value is not smaller than minVal
  • MinLen(num minLen) - validates that the length of the String field value is not shorter than minLen
  • NotNull - validates the the field value is not empty
  • Past - validates that the DateTime field value lies in the past

Development #

To create a new input field for data type T just copy one of the existing classes and modify it accordingly. Replace T with the type of the value of your new input field.

  1. Create a new stateful widget for type T with class MyNewInputWidget extends InputField<T> {
  2. class MyNewInputState extends InputFieldState<T> { where T is replaced by the type of the value of the field.
  3. Write method build( BuildContext context) in the state class. It must end with return super.buildInputField( context, ... where ... is the code to display your input field widget.

Utilities #

This package also contains some utilities. Methods missing in DateTime like [DateHelper.getWeekOfYear] or [DateHelper.getJulianDay]. See [InputUtils.convertToType()] for data type conversion, [InputUtils.readFromJson()] for reading and [InputUtils.writeToJson()] for writing values into nested maps.

To Do #

  • [X] create a customizable calendar picker with week numbers
  • [X] create a text input field for int and double
  • [ ] create an input widget to select multiple choices like a multi-select list
  • [ ] add some images to this documentation
  • [ ] internationalize the whole package
  • [ ] add dartdoc output (requires a dartdoc not creating the whole dart api)
9
likes
0
pub points
0%
popularity

Publisher

unverified uploader

This package provides widgets for input fields. Each widget can be used standalone or within a form. A form can provide enabling, validation, initial values and saving for all fields.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter, intl, pedantic

More

Packages that depend on flutter_input