This commit is contained in:
Patrick Alvin Alcala 2025-02-21 17:06:55 +08:00
parent a208763a67
commit b299297fa5
6 changed files with 64 additions and 63 deletions

View file

@ -91,13 +91,17 @@ class _CustomerSearchPageState extends State<CustomerSearchPage> {
padding: EdgeInsets.only(left: 64, right: 64),
child: Column(
children: [
InputWidget(label: '', controller: _searchController),
const Gap(8),
ButtonWidget(
text: 'Search',
onPressed: _filterList,
width: 160,
)
InputWidget(
label: '',
controller: _searchController,
placeholder: 'Search for medicine',
),
// const Gap(8),
// ButtonWidget(
// text: 'Search',
// onPressed: _filterList,
// width: 160,
// )
],
),
),