SearchableAppBarTitle constructor
const
SearchableAppBarTitle({})
Creates a SearchableAppBarTitle widget.
Parameters:
isSearching: Whether the widget is in search mode (required).searchController: Text editing controller for the search field (required).searchFocus: Focus node for the search field (required).onSubmitted: Callback function called when search query changes (required).title: The title text to display when not searching (required).searchHint: The hint text for the search field (required).
Implementation
const SearchableAppBarTitle({
super.key,
required this.isSearching,
required this.searchController,
required this.searchFocus,
required this.onSubmitted,
required this.title,
required this.searchHint,
});