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> ...@@ -269,18 +269,27 @@ class LevelTwoState extends BaseState<LevelTwoPage>
mainAxisSize: MainAxisSize.max, mainAxisSize: MainAxisSize.max,
children: <Widget>[ children: <Widget>[
ClipRRect( ClipRRect(
borderRadius: BorderRadius.circular(6), borderRadius: BorderRadius.circular(6),
child: Container( child: Container(
decoration: BoxDecoration( color: Color(0xffF9F8FB),
borderRadius: BorderRadius.circular(17), width: 86,
border: Border.all(color: Color(0xffF9F8FB), width: 1)), height: 86,
child: CachedNetworkImage( padding: EdgeInsets.all(1),
imageUrl: _model.planoverItem.banner.imageUrl, child: ClipRRect(
width: 86, borderRadius: BorderRadius.circular(6),
height: 86, child: Container(
fit: BoxFit.cover, width: 86,
), height: 86,
)), color: Colors.white,
child: CachedNetworkImage(
imageUrl: _model.planoverItem.banner.imageUrl,
width: 86,
height: 86,
fit: BoxFit.cover,
),
)),
),
),
Expanded( Expanded(
child: Padding( child: Padding(
padding: EdgeInsets.only(left: 12, top: 5), padding: EdgeInsets.only(left: 12, top: 5),
...@@ -302,8 +311,8 @@ class LevelTwoState extends BaseState<LevelTwoPage> ...@@ -302,8 +311,8 @@ class LevelTwoState extends BaseState<LevelTwoPage>
style: TextStyle( style: TextStyle(
color: Color(0xff999999), fontSize: 12)), color: Color(0xff999999), fontSize: 12)),
Expanded( Expanded(
child: baseText('¥' + _model.planoverItem.guidePrice, child: baseText(_model.planoverItem.guidePrice, 12,
12, Color(0xffFF5963)), 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