TextField95 constructor

const TextField95({
  1. Key? key,
  2. TextEditingController? controller,
  3. Color backgroundColor = Flutter95.white,
  4. double height = 32,
  5. bool multiline = false,
  6. int maxLines = 1,
  7. bool obscureText = false,
  8. FocusNode? focusNode,
  9. ValueChanged<String>? onChanged,
  10. ValueChanged<String>? onSubmitted,
  11. List<TextInputFormatter>? inputFormatters,
  12. bool autofocus = false,
})

Implementation

const TextField95({
  super.key,
  this.controller,
  this.backgroundColor = Flutter95.white,
  this.height = 32,
  this.multiline = false,
  this.maxLines = 1,
  this.obscureText = false,
  this.focusNode,
  this.onChanged,
  this.onSubmitted,
  this.inputFormatters,
  this.autofocus = false,
});