GiantToadTextField constructor

const GiantToadTextField({
  1. TextEditingController? controller,
  2. FocusNode? focusNode,
  3. String? label,
  4. ValueChanged<String>? onChanged,
  5. ValueChanged<String>? onSubmitted,
  6. bool enabled = true,
  7. int maxLines = 1,
  8. Key? key,
})

Implementation

const GiantToadTextField({
  this.controller,
  this.focusNode,
  this.label,
  this.onChanged,
  this.onSubmitted,
  this.enabled = true,
  this.maxLines = 1,
  super.key,
});