Skip to content

Instantly share code, notes, and snippets.

@this-is-richard
Last active March 11, 2019 04:50
Show Gist options
  • Save this-is-richard/8394f6caaedb8cccdb0221a6ddba4024 to your computer and use it in GitHub Desktop.
Save this-is-richard/8394f6caaedb8cccdb0221a6ddba4024 to your computer and use it in GitHub Desktop.
class ChatRoom extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Scaffold(
backgroundColor: Color(0xFFECE5DD),
appBar: AppBar(...), // Title text, action buttons on the right
body: Column(
children: <Widget>[
Expanded(
child: ListView(...), // chat threads
),
Row(...), // input field + send button
],
// ...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment