GiantToadTextField constructor
const
GiantToadTextField({
- TextEditingController? controller,
- FocusNode? focusNode,
- String? label,
- String? hint,
- ValueChanged<
String> ? onChanged, - ValueChanged<
String> ? onSubmitted, - TextInputType? keyboardType,
- TextAlign textAlign = TextAlign.start,
- bool enabled = true,
- int maxLines = 1,
- double? height,
- Key? key,
Implementation
const GiantToadTextField({
this.controller,
this.focusNode,
this.label,
this.hint,
this.onChanged,
this.onSubmitted,
this.keyboardType,
this.textAlign = TextAlign.start,
this.enabled = true,
this.maxLines = 1,
this.height,
super.key,
}) : assert(height == null || height > 0);