美文网首页
flutter---helloworld

flutter---helloworld

作者: KeyboardLife | 来源:发表于2019-03-19 21:10 被阅读0次
import 'package:flutter/material.dart';

void main(){
  runApp(MyApp());
}

class MyApp extends StatelessWidget{
  @override
  Widget build(BuildContext context) {
    
    return new MaterialApp(
      title: "flutter",
      home: new Scaffold(
        appBar: new AppBar(
          title: new Text("hello world---"),
        ),
        body: new Center(
          child: new Text("你好!!"),
        ),
      ),
    );
  }
}
8AF0BB4A-9D2B-47B2-947B-DD908B627414.png

网友评论

      本文标题:flutter---helloworld

      本文链接:https://www.haomeiwen.com/subject/eikomqtx.html