Commit 484f2d68 authored by 林生雨's avatar 林生雨

Merge branch 'featrue/duxin' into 'test'

圆角+边框缺陷修改

See merge request !25
parents a2652a11 635166c0
......@@ -269,18 +269,27 @@ class LevelTwoState extends BaseState<LevelTwoPage>
mainAxisSize: MainAxisSize.max,
children: <Widget>[
ClipRRect(
borderRadius: BorderRadius.circular(6),
child: Container(
decoration: BoxDecoration(
borderRadius: BorderRadius.circular(17),
border: Border.all(color: Color(0xffF9F8FB), width: 1)),
child: CachedNetworkImage(
imageUrl: _model.planoverItem.banner.imageUrl,
width: 86,
height: 86,
fit: BoxFit.cover,
),
)),
borderRadius: BorderRadius.circular(6),
child: Container(
color: Color(0xffF9F8FB),
width: 86,
height: 86,
padding: EdgeInsets.all(1),
child: ClipRRect(
borderRadius: BorderRadius.circular(6),
child: Container(
width: 86,
height: 86,
color: Colors.white,
child: CachedNetworkImage(
imageUrl: _model.planoverItem.banner.imageUrl,
width: 86,
height: 86,
fit: BoxFit.cover,
),
)),
),
),
Expanded(
child: Padding(
padding: EdgeInsets.only(left: 12, top: 5),
......@@ -302,8 +311,8 @@ class LevelTwoState extends BaseState<LevelTwoPage>
style: TextStyle(
color: Color(0xff999999), fontSize: 12)),
Expanded(
child: baseText('¥' + _model.planoverItem.guidePrice,
12, Color(0xffFF5963)),
child: baseText(_model.planoverItem.guidePrice, 12,
Color(0xffFF5963)),
)
],
)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment