博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Flutter: Dismissible 通过在指示的方向上拖动来解除的Widget
阅读量:6180 次
发布时间:2019-06-21

本文共 1300 字,大约阅读时间需要 4 分钟。

class _MyHomeState extends State
{ @override Widget build(BuildContext context) { return Scaffold( appBar: AppBar( title: Text('Flutter Demo'), ), body: ListView( children:
[ Dismissible( background: Container( color: Colors.green, child: Align( alignment: AlignmentDirectional.centerStart, child: Padding( padding: EdgeInsets.only(left: 8), child: Icon(Icons.favorite), ), ), ), secondaryBackground: Container( color: Colors.red, child: Align( alignment: AlignmentDirectional.centerEnd, child: Padding( padding: EdgeInsets.only(right: 8), child: Icon(Icons.delete), ), ), ), child: ListTile( title: Text('aaaaaa'), ), key: ValueKey('aaaaaa'), onDismissed: (DismissDirection direction) { print(direction); }, ), ], )); }}

转载于:https://www.cnblogs.com/ajanuw/p/10924471.html

你可能感兴趣的文章
RabbitMQ学习总结(2)——安装、配置与监控
查看>>
Java基础学习总结(5)——多态
查看>>
shell: demo
查看>>
使用vc+如何添加特殊字符的控件(创世纪篇)
查看>>
Linux下的常用信号
查看>>
3.UIImageView+category
查看>>
2.UIView+category
查看>>
Android ImageLoader使用
查看>>
LDTP
查看>>
StringUtils工具类的常用方法
查看>>
linux下VNC安装与配置
查看>>
URL编码
查看>>
光模块及光纤知识(含分类,常用类型介绍)
查看>>
Apache 单IP多端口设置
查看>>
安装系统前的准备---vmware
查看>>
Tiny并行计算框架之使用介绍
查看>>
Linux od命令
查看>>
一个不错的MySQL集群管理工具
查看>>
mysql-proxy 按表分发查询的lua脚本
查看>>
在wordpress主题下面添加二级菜单
查看>>