flutter基礎
阿新 • • 發佈:2018-07-12
started state art err 步驟 end 基礎 ack 站點
1.flutter安裝
1.參考官網安裝sdk
https://flutter.io/get-started/install
安卓和IOS需要分別配置對應的開發環境,安卓建議使用as開發,安裝Flutter插件
2.運行 $ flutter doctor
查看是否安裝成功
2.基礎實例
運行第一個實例程序,具體創建運行步驟參考官網
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‘), ), body: Center( child: Text(‘Hello World‘), ), ), ); } }
3.技術分享
- 鹹魚技術分享
- flutter-io.cn 中文站點
- flutterchina.club中文站點
flutter基礎