修改字体颜色

master
章文轩 2 years ago
parent d7d600355d
commit ffc1ba6822

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

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

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

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

Loading…
Cancel
Save