add reply action

This commit is contained in:
Salvatore Giordano
2020-02-27 18:37:51 +01:00
parent 541cafb49f
commit 15c13a7dc9
6 changed files with 144 additions and 76 deletions
+3 -10
View File
@@ -22,15 +22,6 @@ class MyApp extends StatelessWidget {
return MaterialApp(
home: Container(
child: StreamChat(
streamChatThemeData: StreamChatThemeData(
accentColor: Colors.red,
channelTheme: ChannelTheme(
inputGradient: LinearGradient(colors: [
Colors.red,
Colors.yellow,
]),
),
),
client: client,
child: ChannelListPage(),
),
@@ -104,7 +95,9 @@ class ThreadPage extends StatelessWidget {
parentMessage: parent,
),
),
MessageInput(),
MessageInput(
parentMessage: parent,
),
],
),
);