|
@@ -177,18 +177,18 @@ class ExpertDetailState extends BasePageState<ExpertDetail,ExpertCommentListPres
|
|
|
textAlign:TextAlign.start,
|
|
|
),
|
|
|
),
|
|
|
- !kaiType?
|
|
|
+ // !kaiType?
|
|
|
InkWell(
|
|
|
onTap: (){
|
|
|
setState(() {
|
|
|
- kaiType = true;
|
|
|
+ kaiType = !kaiType;
|
|
|
});
|
|
|
},
|
|
|
child: Container(
|
|
|
padding: EdgeInsets.only(right:20,bottom:10),
|
|
|
width: width,
|
|
|
child: Text(
|
|
|
- "[展开]",
|
|
|
+ !kaiType?"[展开]":"[收起]",
|
|
|
style: TextStyle(
|
|
|
color:Color(0xFF0287FF),
|
|
|
fontSize:ScreenUtil().setSp(14)
|
|
@@ -197,7 +197,8 @@ class ExpertDetailState extends BasePageState<ExpertDetail,ExpertCommentListPres
|
|
|
),
|
|
|
),
|
|
|
)
|
|
|
- :Container(child: null,),
|
|
|
+ // :Container(child: null,)
|
|
|
+ ,
|
|
|
Container(
|
|
|
height:5,
|
|
|
color: ThemeUtils.getDialogTextFieldColor(context),
|
|
@@ -755,7 +756,7 @@ class ExpertDetailState extends BasePageState<ExpertDetail,ExpertCommentListPres
|
|
|
),
|
|
|
|
|
|
Text(
|
|
|
- detailObj.proficiencyBrandName??'',
|
|
|
+ "擅长品牌:" + detailObj.proficiencyBrandName??'',
|
|
|
style: TextStyle(
|
|
|
color:Colors.white,
|
|
|
fontSize:ScreenUtil().setSp(14)
|