add default user image to theme

This commit is contained in:
Salvatore Giordano
2020-04-23 15:26:55 +02:00
parent 019d0aded8
commit 3d40193f9a
4 changed files with 14 additions and 8 deletions
-7
View File
@@ -28,13 +28,6 @@ class MyApp extends StatelessWidget {
themeMode: ThemeMode.system,
home: Container(
child: StreamChat(
streamChatThemeData: StreamChatThemeData(
defaultChannelImage: (context, channel) {
return Center(
child: Text('AAA'),
);
},
),
client: client,
child: ChannelListPage(),
),