TextTextFieldRowWidget constructor

TextTextFieldRowWidget({
  1. Key? key,
  2. String? title,
  3. String? placeholder,
  4. String? value,
  5. TextStyle? style,
  6. bool autofocus = false,
  7. TextInputType? keyboardType,
  8. TextInputAction? textInputAction,
  9. List<TextInputFormatter>? inputFormatters,
  10. TextEditingController? controller,
})

Implementation

TextTextFieldRowWidget({
  Key? key,
  this.title,
  this.placeholder,
  this.value,
  this.style,
  this.autofocus = false,
  this.keyboardType,
  this.textInputAction,
  this.inputFormatters,
  this.controller,
}) : super(
        key: key,
      );