Advertisement
Guest User

Untitled

a guest
Aug 18th, 2019
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. // Modify the code in the _handleSubmitted method definition.
  2.  
  3. void _handleSubmitted(String text) {
  4. _textController.clear();
  5. ChatMessage message = new ChatMessage( //new
  6. text: text, //new
  7. ); //new
  8. setState(() { //new
  9. _messages.insert(0, message); //new
  10. }); //new
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement