TenMiniInput constructor

const TenMiniInput({
  1. void onChanged(
    1. String
    )?,
  2. void onSubmitted(
    1. String
    )?,
  3. required String labelText,
  4. double borderRadius = 8.0,
  5. int? maxLength,
  6. required TextEditingController controller,
  7. void onChangeFocus(
    1. bool
    )?,
  8. TextInputType? keyboardType,
  9. Widget? prefix,
  10. Widget? suffix,
  11. Key? key,
})

Implementation

const TenMiniInput(
    {this.onChanged,
    this.onSubmitted,
    required this.labelText,
    this.borderRadius = 8.0,
    this.maxLength,
    required this.controller,
    this.onChangeFocus,
    this.keyboardType,
    this.prefix,
    this.suffix,
    super.key});