Border line top items search

This commit is contained in:
Juan Gilsanz Polo 2022-10-26 12:30:15 +02:00
parent d816bc2319
commit f1a837dc42

View file

@ -110,6 +110,18 @@ class _TopItemsScreenState extends State<TopItemsScreen> {
), ),
const SizedBox(width: 10) 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( body: RefreshIndicator(
onRefresh: () async { onRefresh: () async {