赞
踩
Android Studio 的安装教程很多,这里就不再赘述
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!'), ), ), ); } }
由于我的电脑性能差,只能是真机运行安卓程序
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。