美文网首页
flutter学习教程一

flutter学习教程一

作者: 养猪致富 | 来源:发表于2020-04-03 13:26 被阅读0次
    import'package:flutter/material.dart';
    voidmain()=>runApp(newMyApp());
    classMyAppextendsStatelessWidget{
    @overrideWidgetbuild(BuildContextcontext)
    {
    return
    new MaterialApp(title:'Welcome to Flutter',home:newScaffold(appBar:newAppBar(title:newText('Welcome to Flutter'),),body:newCenter(child:newText('Hello World'),),),);}
    }
    

    相关文章

      网友评论

          本文标题:flutter学习教程一

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