diff --git a/lib/view/service_project/service_project_screen.dart b/lib/view/service_project/service_project_screen.dart index 7051705..50bdee7 100644 --- a/lib/view/service_project/service_project_screen.dart +++ b/lib/view/service_project/service_project_screen.dart @@ -218,8 +218,9 @@ class _ServiceProjectScreenState extends State suffixIcon: ValueListenableBuilder( 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),