系统信息

master
章文轩 2 years ago
parent cd3482224c
commit 20013b5f5b

@ -754,13 +754,15 @@ class MessageWidget extends StatelessWidget {
return Row( return Row(
mainAxisAlignment: MainAxisAlignment.center, mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[ children: <Widget>[
Container( Expanded(
padding: EdgeInsets.only(bottom: 5, top: 5), child: Container(
child: Text( padding: EdgeInsets.only(bottom: 5, top: 5),
message!.content ?? '', child: Text(
textAlign: TextAlign.center, message!.content ?? '',
style: TextStyle(fontSize: 10.0,color: Color(0xFF333333)), textAlign: TextAlign.center,
maxLines: 15, style: TextStyle(fontSize: 10.0,color: Color(0xFF333333)),
maxLines: 15,
),
), ),
) )
], ],

Loading…
Cancel
Save