SearchView constructor
const
SearchView({ - Key? key,
- required List<SearchCategory> categories,
- required String title,
- RxChat? chat,
- bool selectable = true,
- bool enabled = true,
- String? submit,
- void onPressed(
- dynamic
)?,
- void onSubmit(
- List<UserId> ids
)?,
- VoidCallback? onBack,
- void onSelected(
- SearchViewResults? results
)?,
})
Implementation
const SearchView({
super.key,
required this.categories,
required this.title,
this.chat,
this.selectable = true,
this.enabled = true,
this.submit,
this.onPressed,
this.onSubmit,
this.onBack,
this.onSelected,
});