AnimatedPasswordTextFormField constructor
const
AnimatedPasswordTextFormField({
- Key? key,
- Interval? interval = const Interval(0.0, 1.0),
- required double animatedWidth,
- AnimationController? loadingController,
- AnimationController? inertiaController,
- TextFieldInertiaDirection? inertiaDirection,
- bool enabled = true,
- String? labelText,
- TextInputType? keyboardType,
- TextInputAction? textInputAction,
- TextEditingController? controller,
- FocusNode? focusNode,
- FormFieldValidator<
String> ? validator, - ValueChanged<
String> ? onFieldSubmitted, - FormFieldSetter<
String> ? onSaved, - Iterable<
String> ? autofillHints,
Implementation
const AnimatedPasswordTextFormField({
Key? key,
this.interval = const Interval(0.0, 1.0),
required this.animatedWidth,
this.loadingController,
this.inertiaController,
this.inertiaDirection,
this.enabled = true,
this.labelText,
this.keyboardType,
this.textInputAction,
this.controller,
this.focusNode,
this.validator,
this.onFieldSubmitted,
this.onSaved,
this.autofillHints,
}) : assert((inertiaController == null && inertiaDirection == null) ||
(inertiaController != null && inertiaDirection != null)),
super(key: key);