Day 12 : I'm not able to scroll down in the catalog app when we are adding 50 items
class HomePage extends StatelessWidget {
const HomePage({super.key});
@override
Widget build(BuildContext context) {
// int days = 30;
// String name = "codepur";
final dummyList = List.generate(50, (index) => CatalogModel.items[0]);
Day 12 : I'm not able to scroll down in the catalog app when we are adding 50 items class HomePage extends StatelessWidget { const HomePage({super.key});
@override Widget build(BuildContext context) { // int days = 30; // String name = "codepur"; final dummyList = List.generate(50, (index) => CatalogModel.items[0]);