skip to Main Content

How to scroll GridView with page – Flutter

I have a gridview builder like this and in this gridview builder im scrolling posts with page; GridView.builder( physics: ScrollPhysics(), gridDelegate: SliverGridDelegateWithFixedCrossAxisCount( crossAxisCount: 2, ), itemCount: listt.length, itemBuilder: (context, index) { return GestureDetector( onTap: () => navigateToDetail(listt[index]), child: Hero( tag:…

VIEW QUESTION
Back To Top
Search