fix channel header text theme

This commit is contained in:
Salvatore Giordano
2021-05-21 15:08:58 +02:00
parent 3bd86b36f4
commit 69fdeb813d
3 changed files with 24 additions and 18 deletions
@@ -29,8 +29,11 @@ class ChannelName extends StatelessWidget {
return StreamBuilder<Map<String, dynamic>>(
stream: channel.extraDataStream,
initialData: channel.extraData,
builder: (context, snapshot) =>
_buildName(snapshot.data!, channel.state?.members, client),
builder: (context, snapshot) => _buildName(
snapshot.data!,
channel.state?.members,
client,
),
);
}