当前位置:网站首页>Flutter 运动鞋商铺小demo
Flutter 运动鞋商铺小demo
2022-08-04 15:04:00 【Alex.凌】
Flutter 商铺小demo


截取部分代码:
Padding(
padding: const EdgeInsets.only(top: 40, left: 30, right: 30, bottom: 20),
child: Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: <Widget>[
const Text(
"运动鞋",
style: TextStyle(fontSize: 30, fontWeight: FontWeight.w600),
),
Row(
children: const <Widget>[
Text(
"筛选",
style: TextStyle(fontSize: 15, fontWeight: FontWeight.w600),
),
SizedBox(
width: 8,
),
Padding(
padding: EdgeInsets.only(top: 5),
child: Icon(Icons.keyboard_arrow_down),
)
],
)
],
),
),
觉得不错的话,欢迎点个赞下载支持。
边栏推荐
猜你喜欢
随机推荐
【Web技术】1401- 图解 Canvas 入门
leetcode: 250. Count subtrees of equal value
Redis-哨兵模式
Qt的QItemDelegate使用
什么,你告诉我?作用域也分种类?
Cisco-小型网络拓扑(DNS、DHCP、网站服务器、无线路由器)
杭电校赛(逆袭指数)
7 天能找到 Go 工作吗?学学 Go 数组和指针试试
用了TCP协议,就一定不会丢包吗?
License server system does not support this version of this feature
Go 语言快速入门指南: 变量和常量
G. Mountaineering Squad (violence & dfs)
大众点评搜索相关性技术探索与实践
PTA 6-2 多项式求值
CF1527D MEX Tree (mex & tree & inclusive)
宣传海报
Almost all known protein structures in the world are open sourced by DeepMind
多线程编程之优先级翻转问题
leetcode: 253. How many meeting rooms are required at least
[Problem solving] QT update component appears "To continue this operation, at least one valid and enabled repository is required"









