ListView
Dart, Flutter2021. 12. 30. 18:25
class TestApp extends StatefulWidget { const TestApp({Key? key}) : super(key: key); @override _TestAppState createState() => _TestAppState(); } class _TestAppState extends State { final List entries = ["A", "B", "C"]; final List numbers = [600, 500, 400]; @override Widget build(BuildContext context) { return Scaffold( appBar: AppBar( title: const Text( "example", ), ), body: ListViewBuilder(entr..