AndroidTVTextField constructor

const AndroidTVTextField({
  1. Key? key,
  2. required FocusNode focusNode,
  3. required NativeTextFieldController controller,
  4. double height = 60,
  5. bool obscureText = false,
  6. String? hint,
  7. int? maxLines = 1,
  8. bool showPasswordToggle = false,
  9. Color backgroundColor = Colors.black,
  10. Color textColor = Colors.white,
  11. ValueChanged<String>? onSubmitted,
  12. Color focuesedBorderColor = Colors.transparent,
  13. Color unFocuesedBorderColor = Colors.transparent,
  14. Widget? postFixWidget,
})

Implementation

const AndroidTVTextField(
    {super.key,
    required this.focusNode,
    required this.controller,
    this.height = 60,
    this.obscureText = false,
    this.hint,
    this.maxLines = 1,
    this.showPasswordToggle = false,
    this.backgroundColor = Colors.black,
    this.textColor = Colors.white,
    this.onSubmitted,
    this.focuesedBorderColor = Colors.transparent,
    this.unFocuesedBorderColor = Colors.transparent,
    this.postFixWidget});