リスト 4.37


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

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

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