flutter学习教程一

2020-04-03  本文已影响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'),),),);}
}
上一篇下一篇

猜你喜欢

热点阅读