diff --git a/lib/view/service_project/service_project_screen.dart b/lib/view/service_project/service_project_screen.dart index 505c914..8831369 100644 --- a/lib/view/service_project/service_project_screen.dart +++ b/lib/view/service_project/service_project_screen.dart @@ -273,8 +273,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),