系统信息

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

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

Loading…
Cancel
Save