Control.textField constructor
Control.textField({ - required String key,
- String? title,
- String? description,
- Widget? content,
- void onChange(
- dynamic
)?,
- String? defaultValue,
- TextInputType? keyboardType,
- FormFieldValidator<String>? validator,
- bool isRequired = false,
- Widget? prefixIcon,
- List<TextInputFormatter>? formatInputs,
})
Implementation
factory Control.textField({
required String key,
String? title,
String? description,
Widget? content,
void Function(dynamic)? onChange,
String? defaultValue,
TextInputType? keyboardType,
FormFieldValidator<String>? validator,
bool isRequired = false,
Widget? prefixIcon,
List<TextInputFormatter>? formatInputs,
}) =>
Control(
description: description,
title: title ?? '',
type: ControlType.textField,
key: key,
content: content,
onChange: onChange,
value: defaultValue,
keyboardType: keyboardType,
validator: validator,
isRequired: isRequired,
prefixIcon: prefixIcon,
formatInputs: formatInputs,
);