Advertisement
Guest User

Untitled

a guest
Aug 18th, 2019
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. //Modify the ChatMessage class definition in main.dart.
  2.  
  3. ...
  4.  
  5. new Expanded( //new
  6. child: new Column( //modified
  7. crossAxisAlignment: CrossAxisAlignment.start,
  8. children: <Widget>[
  9. new Text(_name, style: Theme.of(context).textTheme.subhead),
  10. new Container(
  11. margin: const EdgeInsets.only(top: 5.0),
  12. child: new Text(text),
  13. ),
  14. ],
  15. ),
  16. ), //new
  17.  
  18. ...
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement