Created
April 15, 2020 10:41
-
-
Save KingIdee/25cb9bfdfe0f1fbcdc41f08bb7f3bf40 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'package:flutter/material.dart'; | |
import 'package:stream_chat_flutter/stream_chat_flutter.dart'; | |
class ChannelPage extends StatelessWidget { | |
const ChannelPage({ | |
Key key, | |
}) : super(key: key); | |
@override | |
Widget build(BuildContext context) { | |
return Scaffold( | |
appBar: ChannelHeader(), | |
body: Column( | |
children: <Widget>[ | |
Expanded( | |
child: MessageListView(), | |
), | |
MessageInput(), | |
], | |
), | |
); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment