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