IconAppBar.searchFieldForVendors constructor
- Key? key,
- ValueChanged<
String> ? onChanged,
Implementation
IconAppBar.searchFieldForVendors({
super.key,
ValueChanged<String>? onChanged,
}) : height = 72,
appBar = Container(
padding: Insets.h16v12,
decoration: const BoxDecoration(
border: Border(
bottom: BorderSide(
color: ColorName.gray100,
),
),
),
child: SearchTextField(
onChanged: onChanged,
hintText: 'enter_vendor_name_prompt'.translate,
),
);