buildSearch method
Implementation
Widget buildSearch() {
return AppTextFieldFormWidget(
isSearch: true,
controller: homeController.searchController,
hint: AppStrings.search,
onChanged: (value) {
homeController.updateSearchQuery(value);
},
);
}