MyRoundedSearchInput constructor

MyRoundedSearchInput({
  1. Key? key,
  2. String? hint,
  3. TextInputAction? imeAction,
  4. String? searchIcon,
  5. ValueChanged<String>? onChange,
  6. ValueChanged<String>? onComplete,
  7. double height = 30.0,
  8. double fontSize = 14.0,
  9. double? width,
  10. double? radius,
  11. double iconSize = 15.0,
  12. String? initText,
  13. bool editable = true,
  14. TextEditingController? controller,
})

Implementation

MyRoundedSearchInput(
    {Key? key,
    this.hint,
    this.imeAction,
    this.searchIcon,
    this.onChange,
    this.onComplete,
    this.height = 30.0,
    this.fontSize = 14.0,
    this.width,
    this.radius,
    this.iconSize = 15.0,
    this.initText,
    this.editable = true,
    this.controller})
    : super(key: key);