Skip to content

Instantly share code, notes, and snippets.

@KingIdee
Created April 15, 2020 10:41
Show Gist options
  • Save KingIdee/25cb9bfdfe0f1fbcdc41f08bb7f3bf40 to your computer and use it in GitHub Desktop.
Save KingIdee/25cb9bfdfe0f1fbcdc41f08bb7f3bf40 to your computer and use it in GitHub Desktop.
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