skip to Main Content

ListView.builder builds too many items – Flutter

I am trying to implement indefinite scrolling with ListView.build: import 'package:flutter/material.dart'; void main() => runApp(MyApp()); class MyApp extends StatefulWidget { @override State<MyApp> createState() => _MyAppState(); } class _MyAppState extends State<MyApp> { final entries = []; void addData(num ind) async {…

VIEW QUESTION
Back To Top
Search