修改字体颜色

master
章文轩 2 years ago
parent d7d600355d
commit ffc1ba6822

@ -128,7 +128,10 @@ class _ChatKFPageState extends State<ChatKFPage>
BytedeskUtils.goodsInfo.addListener(() { BytedeskUtils.goodsInfo.addListener(() {
print('发生改变!!!!!!!!!!'); print('发生改变!!!!!!!!!!');
print('customGoods'+customGoods);
print('BytedeskUtils.goodsInfo.value'+BytedeskUtils.goodsInfo.value);
customGoods = BytedeskUtils.goodsInfo.value; customGoods = BytedeskUtils.goodsInfo.value;
print('BytedeskUtils.goodsInfo.value'+BytedeskUtils.goodsInfo.value);
_goodsSubmitted(); _goodsSubmitted();
}); });

@ -677,6 +677,7 @@ class MessageWidget extends StatelessWidget {
child: Text( child: Text(
title, title,
maxLines: 2, maxLines: 2,
style: TextStyle(color: Color(0xFF333333)),
overflow: TextOverflow.ellipsis, overflow: TextOverflow.ellipsis,
), ),
), ),
@ -689,15 +690,15 @@ class MessageWidget extends StatelessWidget {
overflow: TextOverflow.ellipsis, overflow: TextOverflow.ellipsis,
), ),
), ),
// Container( Container(
// margin: EdgeInsets.only(top: 10, left: 8), margin: EdgeInsets.only(top: 10, left: 8),
// child: Text( child: Text(
// '$content', '$content',
// style: TextStyle(fontSize: 12, color: Colors.grey), style: TextStyle(fontSize: 12, color: Colors.grey),
// maxLines: 1, maxLines: 1,
// overflow: TextOverflow.ellipsis, overflow: TextOverflow.ellipsis,
// ), ),
// ) )
// Gaps.vGap4, // Gaps.vGap4,
], ],
), ),

@ -335,6 +335,22 @@ class _ChatInputState extends State<ChatInput> with TickerProviderStateMixin {
// ), // ),
// hintText: '', // hintText: '',
// ), // ),
decoration: InputDecoration(
focusedBorder: UnderlineInputBorder(
borderSide: BorderSide(
width: 1,
),
),
enabledBorder: UnderlineInputBorder(
borderSide: BorderSide(
width: 1,
color: Color(0xFF333333),
),
),
),
style:TextStyle(color: Color(0xFF333333)), style:TextStyle(color: Color(0xFF333333)),
focusNode: _inputFocusNode, focusNode: _inputFocusNode,
// maxLength: 400, // maxLength: 400,

@ -58,7 +58,7 @@ class ExtraItem extends StatelessWidget {
), ),
), ),
), ),
Text(this.title), Text(this.title,style: TextStyle(color: Color(0xFF333333)),),
], ],
), ),
), ),

Loading…
Cancel
Save