(一)flutter第一天

import 'package:flutter/material.dart';
 
void main() => runApp(new MyApp());
 
class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return new MaterialApp(
      title: 'Welcome to Flutter',
      home: new Scaffold(
        appBar: new AppBar(
          title: new Text('标题'),
        ),
        body: new Center(
          child: new Text('您好,世界'),
        ),
      ),
    );
  }
}
  

  

原文地址:https://www.cnblogs.com/xiongwei/p/10373024.html