发表日期:2018-03 文章编辑:小灯 浏览次数:1477
$ git clone -b beta https://github.com/flutter/flutter.git $ subl ~/.bash_profile 添加
export PATH_TO_FLUTTER_GIT_DIRECTORY=/Users/Mac/flutter export PATH=${PATH}:${PATH_TO_FLUTTER_GIT_DIRECTORY}/bin flutter doctor New--- new flutter project
找到main.dart文件
import 'package:flutter/material.dart';void main() => runApp(new MyApp());class MyApp extends StatelessWidget { @override Widget build(BuildContext context) { return new MaterialApp( title: 'Welcome to Flutter', home: new Scaffold( appBar: new AppBar( title: new Text('Welcome to Flutter'), ), body: new Center( child: new Text('Hello World'), ), ), ); } }
image