import 'package:flutter/material.dart';
void main() => runApp(new MaterialApp(
theme: new ThemeData(primarySwatch: Colors.green), home: new MyApp()));
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
final double textSize = 30.0;
final double iconSize = 40.0;
TextStyle textStyle = new TextStyle(color: Colors.grey, fontSize: textSize);
var column = new Column(
crossAxisAlignment: CrossAxisAlignment.stretch, //填充满元素
children: <Widget>[
new MyCard(
title: new Text(
"Favorite",
style: textStyle,
),
icon: new Icon(
Icons.favorite,
size: iconSize,
color: Colors.red,
)),
new MyCard(
title: new Text(
"Alarm",
style: textStyle,
),
icon: new Icon(
Icons.alarm,
size: iconSize,
color: Colors.blue,
)),
new MyCard(
title: new Text(
"Airport Shuttle",
style: textStyle,
),
icon: new Icon(
Icons.airport_shuttle,
size: iconSize,
color: Colors.amber,
)),
new MyCard(
title: new Text(
"Done",
style: textStyle,
),
icon: new Icon(
Icons.done,
size: iconSize,
color: Colors.green,
))
],
);
return new Scaffold(
appBar:
new AppBar(title: new Center(child: new Text("Stateless Widget"))),
body: new Container(
padding: EdgeInsets.only(bottom: 2.0),
child: new Center(
child: new SingleChildScrollView(
child: column,
),
),
));
}
}
class MyCard extends StatelessWidget {
final Widget title;
final Widget icon;
// Constructor. {} here denote that they are optional values i.e you can use as: new MyCard()
MyCard({this.title, this.icon});
@override
Widget build(BuildContext context) {
return new Container(
child: new Card(
child: new Container(
padding: EdgeInsets.all(20.0),
child: new Column(
children: <Widget>[this.title, this.icon],
),
),
),
);
}
}
Flutter Example 无状态组件
最后编辑于 :
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- statelessWidget Stateless widgets 无状态控件是不可变的, 这意味着它们的属性不能...
- 如何使用代码 安装项目前置依赖,以及启动项目的方法,参看:React 拾遗:项目脚手架。 请根据文章内容,把相应部...
- 无状态组件(Stateless Component) 是 React 0.14 之后推出的,大大增强了编写 Rea...