NeoSearchBox constructor
const
NeoSearchBox({
- Key? key,
- required TextEditingController controller,
- ValueChanged<
String> ? onChanged, - String hintText = 'Buscar componentes...',
- Color? backgroundColor,
- double radius = 24,
- double contentHeight = 38,
- EdgeInsetsGeometry padding = const EdgeInsets.symmetric(horizontal: 14, vertical: 10),
Implementation
const NeoSearchBox({
super.key,
required this.controller,
this.onChanged,
this.hintText = 'Buscar componentes...',
this.backgroundColor,
this.radius = 24,
this.contentHeight = 38,
this.padding = const EdgeInsets.symmetric(horizontal: 14, vertical: 10),
});