facebook twitter hatena line email

Flutter/モジュール分割

提供: 初心者エンジニアの簡易メモ
2019年4月30日 (火) 00:52時点におけるAdmin (トーク | 投稿記録)による版

(差分) ←前の版 | 最新版 (差分) | 次の版→ (差分)
移動: 案内検索

lib/main.dart

import 'helloworld/app.dart';
void main() => runApp(MyApp());

helloworld/app.dart

import 'package:flutter/material.dart';
void main() => runApp(new MyApp());
class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return new MaterialApp(
      title: 'Hello Wolrd',
      home: new Scaffold(
        body: new Center(
          child: new Text('Hello World'),
        ),
      ),
    );
  }
}