FormFieldWrapper<T> constructor
- Key? key,
- required Signal<
T> connect, - required Widget to(
- BuildContext context,
- T value,
- void onChanged(
- T
- String? validator(
- T value
- String? label,
- FormAnimationEffect errorEffect = FormAnimationEffect.shakeFade,
- Duration animationDuration = const Duration(milliseconds: 300),
Implementation
const FormFieldWrapper({
super.key,
required this.connect,
required this.to,
this.validator,
this.label,
this.errorEffect = FormAnimationEffect.shakeFade,
this.animationDuration = const Duration(milliseconds: 300),
});