LoginTemplateTextField constructor

const LoginTemplateTextField(
  1. {Key? key,
  2. required LoginTemplateStyle style,
  3. required TextInputAction textInputAction,
  4. required TextInputType keyboardType,
  5. String? hintText,
  6. String? errorText,
  7. List<TextInputFormatter>? inputFormatters,
  8. dynamic onTap(
      )?,
    1. TextEditingController? controller,
    2. bool? enabled,
    3. int maxLines = 1}
    )

    Implementation

    const LoginTemplateTextField({
      Key? key,
      required this.style,
      required this.textInputAction,
      required this.keyboardType,
      this.hintText,
      this.errorText,
      this.inputFormatters,
      this.onTap,
      this.controller,
      this.enabled,
      this.maxLines: 1,
    }) : super(key: key);