(一)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('您好,世界'),
        ),
      ),
    );
  }
}
  

  

posted @ 2019-02-14 10:04  飞雪飘鸿  阅读(257)  评论(0编辑  收藏  举报
https://damo.alibaba.com/ https://tianchi.aliyun.com/course?spm=5176.21206777.J_3941670930.5.87dc17c9BZNvLL