AppSearchBar constructor

const AppSearchBar({
  1. Key? key,
  2. required TextEditingController controller,
  3. required FocusNode focusNode,
  4. required ValueChanged<String> onChanged,
  5. bool isDesktop = false,
})

Implementation

const AppSearchBar({
  super.key,
  required this.controller,
  required this.focusNode,
  required this.onChanged,
  this.isDesktop = false,
});