SizedBox(width: 5), 水平距离5
SizedBox( height: 20, ),
Flutter滚动型容器组件 - ListView篇 - 简书
横向滚动效果
flutter纵向滚动嵌套横向滚动_一锅子鱼的博客-优快云博客_flutter横向滚动
Container 設置邊框,背景顏色,圓角
decoration: new BoxDecoration( border: new Border.all(color: AppColors.appbarbackground,width: 1), color: AppColors.yiquxiaoColor, borderRadius: new BorderRadius.circular((20.0)) borderRadius: BorderRadius.horizontal(left: Radius.circular(10)),//左侧圆角 ),
Wbeview 3.0.0 在跳转页面时会出现闪屏问题,2.8.0不会。
上拉加载和下拉刷新:(pub.dev pull_to_refresh:SmartRefresher)Flutter开发之ListView使用第三方pull_to_refresh加载更多(36) - 灰信网(软件开发博客聚合) (freesion.com)
五:进入页面时左滑右滑的效果
回到上一页面
Navigator.pop(context); //最简单的返回
Navigator.popAndPushNamed(context, routeName); //退出当前页面,并添加新的页面 (先删后加)
Navigator.pushNamedAndRemoveUntil( context, newRouteName, (route) => false); //销毁栈内所有页面并跳转
Navigator.pushReplacement(context, newRoute); //将跳转页替换掉当前页 (先加后删)
Navigator.pushReplacementNamed(context, routeName)
Navigator.popUntil(context, ModalRoute.withName('/'));
如上代码pop后回到的是登录页,这里‘/’是指回到的根,也就是最初的那一层,所以需要处理一下,在.main 中 加入路由