Skip to content

Latest commit

 

History

History
37 lines (23 loc) · 1011 Bytes

README.md

File metadata and controls

37 lines (23 loc) · 1011 Bytes

Flutter路由详解:

https://mp.weixin.qq.com/s?__biz=MzU3NTcwODAxNw==&mid=2247483895&idx=1&sn=32bfdfae090efebf4bbb97d2a08e30a8&chksm=fd1e4fe9ca69c6ffe64e944451fc77111436762f33807aa73acb7cf34cada5a2535b075c42ed&mpshare=1&scene=23&srcid=#rd

listView添加下划线:

https://www.cnblogs.com/zhujiabin/p/10131805.html

//学习路线

const ListTile({
Key key,
this.leading,              // item 前置图标
this.title,                // item 标题
this.subtitle,             // item 副标题
this.trailing,             // item 后置图标
this.isThreeLine = false,  // item 是否三行显示
this.dense,                // item 直观感受是整体大小
this.contentPadding,       // item 内容内边距
this.enabled = true,
this.onTap,                // item onTap 点击事件
this.onLongPress,          // item onLongPress 长按事件
this.selected = false,     // item 是否选中状态
})

https://jspang.com/post/flutterDemo.html https://www.bilibili.com/video/av35800108/