flutter 常用视图组件
1.custom class widget
main.dart
1 import 'package:flutter/material.dart';
2 import './pages/custom.dart';
3
4 void main() {
5 runApp(new Application());
6 }
7 class Application extends StatelessWidget {
8 @override
9 Widget build(BuildContext context) {
10 return new MaterialApp(
11 title: 'custom',
12 home: new Scaffold(
13 body: new customWidgets()
14 )
15 );
16 }
17 }
custom.dart
1 import 'package:flutter/material.dart';
2
3 class customWidgets extends StatelessWidget {
4 @override
5 Widget build(BuildContext context) {
6 return new Container(
7 color: Colors.pink,
8 child: new Container(
9 color: Colors.purple,
10 margin: const EdgeInsets.all(10.0),
11 child: new Container(
12 color: Colors.orange,
13 margin: const EdgeInsets.all(10.0),
14 child: new Container(
15 color: Colors.yellow,
16 margin: const EdgeInsets.all(10.0),
17 ),
18 ),
19 ),
20 );
21 }
22 }
2.radio单选按钮
import 'package:flutter/material.dart';
void main() {
runApp(new Application());
}
class Application extends StatefulWidget {
@override
_ApplicationState createState() => _ApplicationState();
}
class _ApplicationState extends State<Application> {
int rvalue = 0;
void method1(value) {
setState(() {
rvalue = value;
});
}
@override
Widget build(BuildContext context) {
return new MaterialApp(
title: 'a',
home: new Scaffold(
appBar: new AppBar(
title: new Text("a"),
backgroundColor: Colors.green,
),
body: new Center(
child: new Row(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
new Radio(value: 1, groupValue: rvalue, onChanged: (int rval){method1(rval);}),
new Radio(value: 2, groupValue: rvalue, onChanged: (int rval){method1(rval);}),
new Radio(value: 3, groupValue: rvalue, onChanged: (int rval){method1(rval);}),
],
),
),
)
);
}
}
3.checkbox复选框
import 'package:flutter/material.dart';
void main() {
runApp(new Application());
}
class Application extends StatefulWidget {
@override
_ApplicationState createState() => _ApplicationState();
}
class _ApplicationState extends State<Application> {
bool select = false;
@override
Widget build(BuildContext context) {
return new MaterialApp(
title: 'a',
home: new Scaffold(
appBar: new AppBar(
title: new Text("a"),
backgroundColor: Colors.green,
),
body: new Center(
child: new Checkbox(
value: select,
onChanged: (bool cb) {
setState(() {
select = cb;
print(select);
});
}),
),
)
);
}
}
4.snackBar通知条
import 'package:flutter/material.dart';
import './pages/OtherPage.dart'; void main() {
runApp(new Application());
}
class Application extends StatefulWidget {
@override
_ApplicationState createState() => _ApplicationState();
} class _ApplicationState extends State<Application> {
bool bval = false;
void method1(value) {
setState(() {
bval = value;
});
}
@override
Widget build(BuildContext context) {
final GlobalKey<ScaffoldState> _skey = new GlobalKey<ScaffoldState>();
void method1() {
_skey.currentState.showSnackBar(new SnackBar(
content: new Text('Activated snack bar'),
backgroundColor: Colors.blue,
));
}
return new MaterialApp(
title: 'a',
home: new Scaffold(
key: _skey,
body: new Center(
child: new RaisedButton(
onPressed: () {method1();},
child: new Text('raisebtn'),
),
), )
);
}
}
5.drawer,类似qq侧边划出的效果
1 import 'package:flutter/material.dart';
2
3 void main() {
4 runApp(new Application());
5 }
6 class Application extends StatefulWidget {
7 @override
8 _ApplicationState createState() => _ApplicationState();
9 }
10
11 class _ApplicationState extends State<Application> {
12 bool bval = false;
13 void method1(value) {
14 setState(() {
15 bval = value;
16 });
17 }
18 @override
19 Widget build(BuildContext context) {
20 return new MaterialApp(
21 title: 'a',
22 home: new Scaffold(
23 appBar: new AppBar(
24 title: new Text("a"),
25 backgroundColor: Colors.green,
26 ),
27 drawer: new Drawer(
28 child: new ListView(
29 children: <Widget>[
30 new UserAccountsDrawerHeader(
31 accountName: new Text('pengjinlong'),
32 accountEmail: new Text('pengjinlong43@gmail.com'),
33 currentAccountPicture: new CircleAvatar(
34 backgroundColor: Colors.black26,
35 child: new Text('Peng'),
36 ),
37 decoration: new BoxDecoration(color: Colors.blueAccent),
38 otherAccountsPictures: <Widget>[
39 new CircleAvatar(
40 backgroundColor: Colors.black26,
41 child: new Text('jin'),
42 ),
43 new CircleAvatar(
44 backgroundColor: Colors.black26,
45 child: new Text('long'),
46 ),
47 ],
48 ),
49 new ListTile(
50 title: new Text('d1'),
51 trailing: new Icon(Icons.accessibility),
52 onTap: () {
53 Navigator.pop(context);
54 },
55 ),
56 new ListTile(
57 title: new Text('d1'),
58 trailing: new Icon(Icons.accessibility),
59 ),
60 new ListTile(
61 title: new Text('d1'),
62 trailing: new Icon(Icons.accessibility),
63 )
64 ],
65 ),
66 ),
67 )
68 );
69 }
70 }
6.switch按钮
1 import 'package:flutter/material.dart';
2
3 void main() {
4 runApp(new Application());
5 }
6 class Application extends StatefulWidget {
7 @override
8 _ApplicationState createState() => _ApplicationState();
9 }
10
11 class _ApplicationState extends State<Application> {
12 bool bval = false;
13 void method1(value) {
14 setState(() {
15 bval = value;
16 });
17 }
18 @override
19 Widget build(BuildContext context) {
20 return new MaterialApp(
21 title: 'a',
22 home: new Scaffold(
23 appBar: new AppBar(
24 title: new Text("a"),
25 backgroundColor: Colors.green,
26 ),
27 body: new Center(
28 child: new Column(
29 mainAxisAlignment: MainAxisAlignment.center,
30 children: <Widget>[
31 new Switch(
32 value: bval,
33 onChanged: (bool val) {
34 method1(val);
35 },
36 )
37 ],
38 ),
39 ),
40 )
41 );
42 }
43 }
7.listView
class _ApplicationState extends State<Application> {
@override
Widget build(BuildContext context) {
return new MaterialApp(
title: 'dummy application',
home: new Scaffold(
appBar: new AppBar(
title: new Text('List widget'),
),
body: new ListView(
children: <Widget>[
new ListTile(
title: new Text('item 1dd'),
trailing: new Icon(Icons.arrow_forward),
),
new ListTile(
title: new Text('item 2'),
trailing: new Icon(Icons.arrow_forward),
),
new ListTile(
title: new Text('item 3'),
trailing: new Icon(Icons.arrow_forward),
),
],
),
)
);
}
}
tips: listview的title属性可以设置InputFiled实现登录框
flutter 常用视图组件的更多相关文章
- Flutter常用布局组件
Flutter控件本身通常由许多小型.单用途的控件组成,结合起来产生强大的效果,例如,Container是一种常用的控件,由负责布局.绘画.定位和大小调整的几个控件组成,具体来说,Container是 ...
- Flutter 常用组件
无状态组件(StatelessWidget)是不可变的,这意味着它的属性不能改变,所有的值都是最终的. 有状态组件(StatefulWidget)持有的状态可能在Widget生命周期中发生变化.实现一 ...
- [译]ASP.NET Core 2.0 视图组件
问题 如何在ASP.NET Core 2.0中使用视图组件? 答案 新建一个空项目,修改Startup类并添加MVC服务和中间件: public void ConfigureServices(ISer ...
- DjangoRestFramework学习二之序列化组件、视图组件 serializer modelserializer
DjangoRestFramework学习二之序列化组件.视图组件 本节目录 一 序列化组件 二 视图组件 三 xxx 四 xxx 五 xxx 六 xxx 七 xxx 八 xxx 一 序列化组 ...
- 前后端分离djangorestframework——视图组件
CBV与FBV CBV之前说过就是在view.py里写视图类,在序列化时用过,FBV就是常用的视图函数,两者的功能都可以实现功能,但是在restful规范方面的话,CBV更方便,FBV还要用reque ...
- $Django patch与put,视图组件,路由控制,响应器
1 patch与put(幂等?回顾) PATCH 与 PUT 属性上的一个重要区别还在于:PUT 是幂等的,而 PATCH 不是幂等的.幂等是一个数学和计算机学概念,在计算机范畴内表示一个操作执行任意 ...
- React Native常用第三方组件汇总--史上最全 之一
React Native 项目常用第三方组件汇总: react-native-animatable 动画 react-native-carousel 轮播 react-native-countdown ...
- React Native常用第三方组件汇总--史上最全[转]
本文出处: http://blog.csdn.net/chichengjunma/article/details/52920137 React Native 项目常用第三方组件汇总: react-na ...
- sencha touch 入门系列 (九)sencha touch 视图组件简介
对于一个普通用户来说,你的项目就是一组简单的视图集合,用户直接通过跟视图进行交互来操作你的应用,对于一个开发人员来说,视图是一个项目的入口,虽然大部分时候最有价值的部分是在model层和control ...
随机推荐
- C++ 继承及委托
从内存角度看继承和多重继承 http://www.doc88.com/p-9075148832569.html 在C++中实现委托(Delegate) https://blog.csdn.net/jf ...
- MVP on Board 没用小技巧 👌
七月入选了微软 MVP,本文记录 on board 过程中遇到的小问题和没用小技巧. MVP Portal 当你收到来自微软的确认邮件之后,你将正式被接纳为微软现任 MVP 的一员.从此刻开始,你便拥 ...
- Linux groupadd and groupmod
groupadd [选项] group 三个参数: -g,--gid 指定组gid,除非使用-o,否则gid必须时唯一的 -o,--non-unique 允许创建有重复gid的组 -r, --syst ...
- python 并行
网址:http://www.parallelpython.com/ 下载模块[根据使用环境选择相应的下载版本]下载pp-1.6.4.4 .zip,注意不要下载md5 解压缩上面下载的文件:pp-1.6 ...
- 在 Intenseye,为什么我们选择 Linkerd2 作为 Service Mesh 工具(Part.1)
在 Intenseye,我们 follow(跟随) trends(趋势) & hype(最被炒作) 的技术,并在使用时应用最佳实践. 我们在用 Scala.Go.Python 等编写的 Kub ...
- ESCMScript6(3)Promise对象
1. Promise的含义 Promise 是异步编程的一种解决方案,比传统的解决方案--回调函数和事件--更合理和更强大.它由社区最早提出和实现,ES6 将其写进了语言标准,统一了用法,原生提供了P ...
- maven解析依赖报错:Cannot resolve com.baomidou:mybatis-plus-generator:3.4.2
不能解析依赖: <dependency> <groupId>com.baomidou</groupId> <artifactId>mybatis-plu ...
- BigDecimal之除不尽报错
当bigdecimal除不尽(循环小数)后会报错,下面的是BigDecimal ,divide方法提供的精确小数方法(推荐使用) BigDecimal avgCapital = loanAmount. ...
- 第八篇 -- 用U盘制作启动盘装Win10系统
下载装机吧:http://www.zhuangjiba.com 装Win10参考文章:http://www.zhuangjiba.com/bios/13249.html U盘启动盘制作 1.首先将U盘 ...
- Resnet网络详细结构(针对Cifar10)
Resnet网络详细结构(针对Cifar10) 结构 具体结构(Pytorch) conv1 (conv1): Conv2d(3, 64, kernel_size=(3, 3), stride=(1, ...