リスト 4.31


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

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

//リスト4.31
class TestPage extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'AppBar',
      home: Scaffold(
        appBar: AppBar(title: Text('AppBar')),
        body: Center(child: Text('AppBar'))
      )
    );
  }
}