为方便起见,文中有些地方会把widget
称做组件
或部件
android
添加了一张图片 canvas
pubspec.yaml
中添加assetsapi
# To add assets to your application, add an assets section, like this:
assets:
- images/android_1.jpg
复制代码
这个地方要注意缩进,不然AS可能会不容许编译。app
从效果图中能够看到,页面中有一张大图片,一个小标题栏,有3个按钮的横栏,以及下方的大段文字。 整个视图用一个ListView
包含了所需的全部widget。写这个界面的过程,就像是Android中写layout文件。less
approach_1.dart
代码。项目中使用的是material design的图标。ide
import 'package:flutter/material.dart';
void main() => runApp(new MyApp());
class MyApp extends StatelessWidget {
// 应用的根widget
@override
Widget build(BuildContext context) {
// 图片下方的小标题栏
Widget titleSection = new Container(
padding: const EdgeInsets.all(32.0),
child: new Row(
children: <Widget>[
new Expanded(child:
new Column(crossAxisAlignment: CrossAxisAlignment.start,
children: <Widget>[
new Container(padding: const EdgeInsets.only(bottom: 8.0),
child: new Text('Android Device',
style: new TextStyle(fontWeight: FontWeight.bold),),),
new Text(
'Rust Fisher', style: new TextStyle(color: Colors.grey[500]),)
],
)),
new Icon(Icons.star, color: Colors.red,),
new Text('42')
],
),
);
// 定义在方法里面的方法 nested function
Column buildButtonColumn(IconData icon, String label) {
Color color = Theme
.of(context)
.primaryColor;
return new Column(
mainAxisSize: MainAxisSize.min,
mainAxisAlignment: MainAxisAlignment.center,
children: [
new Icon(icon, color: color),
new Container(
margin: const EdgeInsets.only(top: 8.0),
child: new Text(
label,
style: new TextStyle(
fontSize: 12.0, fontWeight: FontWeight.w400, color: color,),
),
),
],
);
}
Widget buttonSection = new Container(
child: new Row(mainAxisAlignment: MainAxisAlignment.spaceEvenly,
children: <Widget>[
buildButtonColumn(Icons.call, '通话'),
buildButtonColumn(Icons.near_me, '定位'),
buildButtonColumn(Icons.share, '分享'),
],
),);
Widget textSection = new Container(padding: const EdgeInsets.all(32.0),
child: new Text(
'''
Flutter Tutorials
The Flutter Tutorials teach you how to use the Flutter framework to build mobile applications for iOS and Android.
Choose from the following:
·Building Layouts in Flutter
How to build layouts using Flutter’s layout mechanism. Once you’ve learned basic principles, you’ll build the layout for a sample screenshot.
·Adding Interactivity to Your Flutter App
You’ll extend the simple layout app created in “Building Layouts in Flutter” to make an icon tappable. Different ways of managing a widget’s state are also discussed.
·Animations in Flutter
Explains the fundamental classes in the Flutter animation package (controllers, Animatable, curves, listeners, builders), as it guides you through a progression of tween animations using different aspects of the animation APIs.
·Internationalizing Flutter Apps
Learn how to internationalize your Flutter application. A guide through the widgets and classes that enable apps to display their content using the user’s language and formatting conventions.
'''
, softWrap: true,),);
return new MaterialApp(
title: 'Flutter Demo',
theme: new ThemeData(
primarySwatch: Colors.blue,
),
home: new Scaffold(
appBar: new AppBar(title: new Text('Flutter Approach 1'),),
body: new ListView(children: <Widget>[
new Image.asset(
'images/android_1.jpg', width: 600.0,
height: 240.0,
fit: BoxFit.cover,),
titleSection,
buttonSection,
textSection
],),),
);
}
}
复制代码
因flutter的绘制特性,flutter是在本身的canvas上绘制界面。 Android开发者选项中-显示布局边界功能对flutter绘制出的界面并没什么做用。布局
此时能够用debugPaintSizeEnabled
,查看widget边界flex
import 'package:flutter/rendering.dart';
void main() {
debugPaintSizeEnabled = true; // 这个能够看到UI的边界
// runApp(new MyApp());
}
复制代码
改变这个属性时,可能须要从新编译运行。ui
要点:this
非material design组件,没有AppBar,没有背景颜色,没有标题。这些东西都要本身设置。
import 'package:flutter/material.dart';
void main() {
runApp(new MyApp());
}
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return new Container(
decoration: new BoxDecoration(color: Colors.white70),
child: new Center(
child: new Text('my home page', textDirection: TextDirection.ltr,
style: new TextStyle(fontSize: 40.0, color: Colors.black26),),
),
);
}
}
复制代码
在手机上运行效果如图
竖直或水平放置组件是常见的布局方式。能够用Row widget来水平放置组件,或用Column widget垂直放置组件。
若是要一个widget和它的同级widget同样占用自身宽度的两倍区域。能够把它放进Expanded widget里面。认准Expanded
。 Expanded widget有一个flex属性,一个int值决定widget占用的比例。默认是1。(有点就像LinearLayout里面的weight)
下面是一个显示2张图片的例子
import 'package:flutter/material.dart';
import 'package:flutter/rendering.dart';
void main() {
debugPaintSizeEnabled = true; // 这个能够看到UI的边界
runApp(new MyApp());
}
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return new MaterialApp(
title: '随便一个title',
theme: new ThemeData(
primarySwatch: Colors.blue,
),
home: new MyHomePage(title: 'Home Page'),
);
}
}
class MyHomePage extends StatefulWidget {
MyHomePage({Key key, this.title}) : super(key: key);
final String title;
@override
_MyHomePageState createState() => new _MyHomePageState();
}
class _MyHomePageState extends State<MyHomePage> {
@override
Widget build(BuildContext context) {
return new Scaffold(
appBar: new AppBar(
title: new Text(widget.title),
),
body: new Center(
child: new Row(
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
children: [
new Expanded(child: new Image.asset('images/p_box1.png')),
new Expanded(
flex: 2, child: new Image.asset('images/pic_kotlin_s.jpg')),
],
),
),
);
}
}
复制代码
默认状况下,一行或一列会占用尽量多的空间。但若是想把子widget紧密排列,须要设置mainAxisSize
为 MainAxisSize.min
。 下面的例子是把几个图标紧凑排列。
class _MyHomePageState extends State<MyHomePage> {
@override
Widget build(BuildContext context) {
return new Scaffold(
appBar: new AppBar(
title: new Text(widget.title),
),
body: new Center(
child: new Row(
mainAxisSize: MainAxisSize.min,
children: [
new Icon(Icons.star, color: Colors.green,),
new Icon(Icons.star, color: Colors.green[400],),
new Icon(Icons.star, color: Colors.green[300],),
new Icon(Icons.star, color: Colors.green[200],),
new Icon(Icons.star, color: Colors.green[100],),
],
// 无尽的括号......
}
复制代码
能够把Row和Column混起来用,组合到widget里面。
class _MyHomePageState extends State<MyHomePage> {
@override
Widget build(BuildContext context) {
var ratings = new Container(
padding: EdgeInsets.all(20.0),
child: new Row(
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
children: <Widget>[
new Row(mainAxisSize: MainAxisSize.min, children: <Widget>[
new Icon(Icons.star, color: Colors.red,),
new Icon(Icons.star, color: Colors.red[400],),
new Icon(Icons.star, color: Colors.red[300],),
new Icon(Icons.star, color: Colors.red[200],),
new Icon(Icons.star, color: Colors.red[100],),
],),
new Text('42 Read'),
],
),
);
return new Scaffold(
appBar: new AppBar(
title: new Text(widget.title),
),
body: new Center(
child: ratings
),
);
}
// ......
}
复制代码
ratings
来表示比较复杂的widget,能够减缓一些缩进和括号问题。
import 'package:flutter/material.dart';
import 'package:flutter/rendering.dart';
void main() {
// debugPaintSizeEnabled = true; // 这个能够看到UI的边界
runApp(new MyApp());
}
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return new MaterialApp(
title: '随便一个title',
theme: new ThemeData(
primarySwatch: Colors.blue,
),
home: new MyHomePage(title: 'Home Page'),
);
}
}
class MyHomePage extends StatefulWidget {
MyHomePage({Key key, this.title}) : super(key: key);
final String title;
@override
_MyHomePageState createState() => new _MyHomePageState();
}
class _MyHomePageState extends State<MyHomePage> {
@override
Widget build(BuildContext context) {
var ratings = new Container(
padding: EdgeInsets.all(20.0),
child: new Row(
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
children: <Widget>[
new Row(mainAxisSize: MainAxisSize.min, children: <Widget>[
new Icon(Icons.star, color: Colors.red,),
new Icon(Icons.star, color: Colors.red[400],),
new Icon(Icons.star, color: Colors.red[300],),
new Icon(Icons.star, color: Colors.red[200],),
new Icon(Icons.star, color: Colors.red[100],),
],),
new Text('42 Read'),
],
),
);
var descTextStyle = new TextStyle(
color: Colors.black,
fontWeight: FontWeight.w800,
fontFamily: 'Roboto',
letterSpacing: 0.5,
fontSize: 12.0,
height: 2.0,
);
var iconList = DefaultTextStyle.merge(
style: descTextStyle,
child: new Container(
padding: new EdgeInsets.all(2.0),
child: new Row(
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
children: [
new Column(
children: [
new Icon(Icons.kitchen, color: Colors.red[500]),
new Text('PREP:'),
new Text('25 min'),
],
),
new Column(
children: [
new Icon(Icons.timer, color: Colors.red[500]),
new Text('COOK:'),
new Text('1 hr'),
],
),
new Column(
children: [
new Icon(Icons.restaurant, color: Colors.red[500]),
new Text('FEEDS:'),
new Text('4-6'),
],
),
],
),
),
);
var leftColumn = new Container(
padding: new EdgeInsets.fromLTRB(20.0, 20.0, 20.0, 2.0),
child: new Column(
children: [
ratings,
iconList,
],
),
);
return new Scaffold(
appBar: new AppBar(
title: new Text(widget.title),
),
body: new Center(
child: new Container(
margin: new EdgeInsets.fromLTRB(0.0, 40.0, 0.0, 30.0),
// height: 600.0,
child: new Card(
child: new Row(
crossAxisAlignment: CrossAxisAlignment.start,
children: <Widget>[
new Container(
// width: 440.0,
child: leftColumn,
),
new Expanded(
child: new Image.asset('images/android_1.jpg'))
],
),
),
),
),
);
}
}
复制代码