1. 程式人生 > >flutter開發之helloWord

flutter開發之helloWord

###2.flutter的helloWorld

import 'package:flutter/material.dart';

void main() {	//主程式入口
  runApp(new MyApp());	//固定格式	
    //new MyApp()定義的元件 必須是Widget,
    //所以必須繼承一個如:StatelessWidget	
    //StatelessWidget無狀態變更的
}
class MyApp extends StatelessWidget {
  //必須重寫該方法
  @override
  Widget build(BuildContext context) {	
    // TODO: implement build
    return new MaterialApp(	//flutter定義好的主題頁面
      home: new Scaffold(	//頁面類容初始化
        appBar: new AppBar(		//頭部導航欄
          title: new Text('hello world'),	//導航欄標題
        ),
        body: new Center(	//定義到頁面中心的類
          child: new Text('hello world'),	//Text文字輸入類
        ),
      ),
    );
  }
}

在這裡插入圖片描述