欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Flutter开发之Dart语言

程序员文章站 2022-05-29 20:24:58
...
import 'package:flutter/material.dart';
void main()=>runApp(myapp());
class myapp extends StatelessWidget{
  @override 
  Widget build(BuildContext context) {
    return MaterialApp(
      title:'welcome to flutter',
      home:Scaffold(
        appBar:AppBar(
          title: Text('welcome to flutter'),
        ),  //AppBar
        body:Center(
          child: Text('hello world'),
        )  //Center
      )  //Scaffold
    );  //MaterialApp
  }
}

运行结果:
Flutter开发之Dart语言