I have data in column using List.generate which I want to paginate as in image attached. Could anyone guide me with this? Any help is appreciated. Thank You.
Column(
children: List.generate(
pList.newsList.length,
(index) => pList.newsList[index],
),
)