How to hide top card when scrolling down and appear when scrolling up
Im new in flutter. And stacked in this problem, I have filter card on the top of my screen, and I want to hide and appear when scroll going down and up, Thank in advance >Solution : use this @override void initState() { super.initState(); scrollController!.addListener(() { if (scrollController!.position.userScrollDirection == ScrollDirection.forward) { if (!isFilterVisible) { setState(()… Read More How to hide top card when scrolling down and appear when scrolling up