|
|
@@ -566,7 +566,8 @@ Widget orderAddress(String startAddress, String endAddress) { //运送路线
|
|
|
return Container(
|
|
|
margin: EdgeInsets.only(bottom: ScreenUtil.getInstance().setHeight(20)),
|
|
|
child: Row(children: < Widget > [
|
|
|
- Text('${startAddress} ---> ${endAddress}', style: TextStyle(color: Colors.black, fontSize: ScreenUtil.getInstance().setSp(30)), ),
|
|
|
+ Text('${startAddress} ---> ${endAddress}',
|
|
|
+ overflow: TextOverflow.ellipsis, style: TextStyle(color: Colors.black, fontSize: ScreenUtil.getInstance().setSp(30)), ),
|
|
|
], )
|
|
|
);
|
|
|
}
|
|
|
@@ -600,7 +601,9 @@ Widget orderItem(String key, String value, int marginBottom) { //货物名称,
|
|
|
return Container(
|
|
|
margin: EdgeInsets.only(bottom: ScreenUtil.getInstance().setHeight(marginBottom)),
|
|
|
child: Row(children: < Widget > [
|
|
|
- Text('${key}:${value}', style: TextStyle(color: Color.fromRGBO(153, 153, 153, 1), fontSize: ScreenUtil.getInstance().setSp(24)), ),
|
|
|
+ Text('${key}:${value}',
|
|
|
+ overflow: TextOverflow.ellipsis,
|
|
|
+ style: TextStyle(color: Color.fromRGBO(153, 153, 153, 1), fontSize: ScreenUtil.getInstance().setSp(24)), ),
|
|
|
], )
|
|
|
);
|
|
|
}
|