made chnages in details screen and list screen

This commit is contained in:
Vaibhav Surve 2025-11-12 16:48:53 +05:30
parent 01f3cd24da
commit e1b6794e15

View File

@ -218,8 +218,9 @@ class _ServiceProjectScreenState extends State<ServiceProjectScreen>
suffixIcon: ValueListenableBuilder<TextEditingValue>(
valueListenable: searchController,
builder: (context, value, _) {
if (value.text.isEmpty)
if (value.text.isEmpty) {
return const SizedBox.shrink();
}
return IconButton(
icon: const Icon(Icons.clear,
size: 20, color: Colors.grey),