diff --git a/lib/screens/top_items/top_items.dart b/lib/screens/top_items/top_items.dart index 2978d36..baa032c 100644 --- a/lib/screens/top_items/top_items.dart +++ b/lib/screens/top_items/top_items.dart @@ -110,6 +110,18 @@ class _TopItemsScreenState extends State { ), const SizedBox(width: 10) ], + bottom: PreferredSize( + preferredSize: const Size(double.maxFinite, 1), + child: Container( + width: double.maxFinite, + height: 1, + decoration: BoxDecoration( + color: searchActive == true + ? Colors.grey.withOpacity(0.5) + : Colors.transparent + ), + ), + ), ), body: RefreshIndicator( onRefresh: () async {