GrxSearchableHeader constructor

const GrxSearchableHeader({
  1. Key? key,
  2. required String title,
  3. double animationProgress = 0,
  4. AnimationController? animationController,
  5. String? hintText,
  6. List<Widget>? actions,
  7. void onQuickSearchHandler(
    1. String
    )?,
  8. TextEditingController? searchFieldController,
  9. bool canPop = false,
})

Implementation

const GrxSearchableHeader({
  super.key,
  required this.title,
  this.animationProgress = 0,
  this.animationController,
  this.hintText,
  this.actions,
  this.onQuickSearchHandler,
  this.searchFieldController,
  this.canPop = false,
});