Commit 386c886a authored by 朱翠翠's avatar 朱翠翠

UI走查

parent 966fb05c
......@@ -469,7 +469,7 @@ class PlanCompareDetailPageState extends BaseState<PlanCompareDetailPage> {
return Row(children: <Widget>[
Expanded(
flex: 1,
child: baseText(left.empty() ? "暂无" : left, 12,
child: baseText(left.empty() ? "暂无" : left, isName ? 12 : 14,
isName ? Color(0xff666666) : Color(0xff3FB5AF),
bold: isName ? false : true,
maxLines: 100,
......@@ -481,7 +481,7 @@ class PlanCompareDetailPageState extends BaseState<PlanCompareDetailPage> {
),
Expanded(
flex: 1,
child: baseText(right.empty() ? "暂无" : right, 12,
child: baseText(right.empty() ? "暂无" : right, isName ? 12 : 14,
isName ? Color(0xff666666) : Color(0xffF25874),
bold: isName ? false : true,
maxLines: 100,
......
......@@ -29,7 +29,7 @@ AppBar baseAppBar(
Widget titleWidget = null}) {
return _baseAppBarChangeTitle(
title:
title == null ? Container() : baseText(title, 16, Color(0xff323232)),
title == null ? Container() : baseText(title, 18, Color(0xff323232)),
action: action,
centerTitle: centerTitle,
backClick: backClick,
......
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