リスト 4.23


//flutter
import 'package:flutter/material.dart';

void main() {
  return runApp(TestPage());
}

//リスト4.23
class TestPage extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'ListView',
      home: Scaffold(
        appBar: AppBar(title: Text('ListView')),
        body: Column(
          children: [
            Text('アイテムのリスト'),
            Expanded(
              child: ListView(
                children: List.generate(100, (i) => Text('Item$i')),
              )
            )
          ],
        )
      )
    );
  }
}