SearchView constructor
const
SearchView({
- Key? key,
- required AppTheme theme,
- required TextEditingController controller,
- void onChanged()?,
- void onClosedPressed()?,
- String hintText = '',
- double borderRadius = 8.0,
- double iconSize = 20,
- EdgeInsets contentPadding = const EdgeInsets.symmetric(vertical: 4.0),
Implementation
const SearchView({
super.key,
required this.theme,
required this.controller,
this.onChanged,
this.onClosedPressed,
this.hintText = '',
this.borderRadius = 8.0,
this.iconSize = 20,
this.contentPadding = const EdgeInsets.symmetric(vertical: 4.0),
});