From f1a837dc42959077c53a3e996c9d003e8189dbe6 Mon Sep 17 00:00:00 2001 From: Juan Gilsanz Polo Date: Wed, 26 Oct 2022 12:30:15 +0200 Subject: [PATCH] Border line top items search --- lib/screens/top_items/top_items.dart | 12 ++++++++++++ 1 file changed, 12 insertions(+) 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 {