fix(home): remove thin border from overscroll indicator

This commit is contained in:
Michael Thomas 2023-09-03 11:07:03 -04:00
parent 2a780f13c7
commit 54cfe936c3
1 changed files with 4 additions and 1 deletions

View File

@ -122,7 +122,10 @@ class _HomeScreenState extends State<HomeScreen> {
alignment: Alignment.bottomCenter, alignment: Alignment.bottomCenter,
child: Container( child: Container(
height: overscrollBottomAmount + 30, height: overscrollBottomAmount + 30,
decoration: BoxDecoration(
color: Colors.grey.shade50, color: Colors.grey.shade50,
border: Border.all(width: 0, color: Colors.white),
),
), ),
), ),
Consumer<HomePageState>( Consumer<HomePageState>(