fix(home): remove thin border from overscroll indicator
This commit is contained in:
parent
2a780f13c7
commit
54cfe936c3
|
@ -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,
|
||||||
color: Colors.grey.shade50,
|
decoration: BoxDecoration(
|
||||||
|
color: Colors.grey.shade50,
|
||||||
|
border: Border.all(width: 0, color: Colors.white),
|
||||||
|
),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
Consumer<HomePageState>(
|
Consumer<HomePageState>(
|
||||||
|
|
Loading…
Reference in New Issue