【发布时间】:2018-11-02 08:14:10
【问题描述】:
我尝试使用颤振创建登录屏幕,在那里我添加了记住我复选框,但我无法正确对齐它,
Flutter 复选框在自身周围占据了不需要的空间,以提供良好的触摸用户体验。
这就是我的布局显示方式,
检查下面的代码,
new Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: <Widget>[
new Row(
children: <Widget>[
new Checkbox(
activeColor: Colors.grey,
value: _isChecked,
onChanged: (bool value) {
_onChecked(value);
},
),
new GestureDetector(
onTap: () => print("Remember me"),
child: new Text(
"Remember me",
style: new TextStyle(color: Colors.white70),
),
)
],
),
new Text(
"Forgot password ?",
style: new TextStyle(color: Colors.white70),
)
],
),
【问题讨论】: