AnimSearchAppBar constructor

const AnimSearchAppBar({
  1. Key? key,
  2. double radius = 10,
  3. TextEditingController? cSearch,
  4. FocusNode? searchFocusNode,
  5. Color? clearIconColor,
  6. Color? backgroundColor,
  7. TextStyle? labelStyle,
  8. TextStyle? hintStyle,
  9. TextStyle? cancelButtonTextStyle,
  10. Widget? prefixIcon,
  11. Color? iconColor,
  12. Widget? suffixIcon,
  13. Duration? duration,
  14. String? cancelButtonText,
  15. String? hintText,
  16. InputDecoration? decoration,
  17. ValueChanged<String>? onChanged,
  18. String? title,
  19. Widget? appBar,
  20. TextStyle? titleStyle,
  21. TextInputType? keyboardType,
  22. TextCapitalization textCapitalization = TextCapitalization.none,
  23. TextInputAction? textInputAction,
  24. ValueChanged<String>? onFieldSubmitted,
})

Implementation

const AnimSearchAppBar({
  Key? key,
  this.radius = 10,
  this.cSearch,
  this.searchFocusNode,
  this.clearIconColor,
  this.backgroundColor,
  this.labelStyle,
  this.hintStyle,
  this.cancelButtonTextStyle,
  this.prefixIcon,
  this.iconColor,
  this.suffixIcon,
  this.duration,
  this.cancelButtonText,
  this.hintText,
  this.decoration,
  this.onChanged,
  this.title,
  this.appBar,
  this.titleStyle,
  this.keyboardType,
  this.textCapitalization = TextCapitalization.none,
  this.textInputAction,
  this.onFieldSubmitted,
}) : super(key: key);