import 'package:flutter/material.dart'; import 'package:stream_chat/stream_chat.dart'; import '../stream_chat_flutter.dart'; import 'stream_channel.dart'; /// It shows the current [Channel] name using a [Text] widget. /// /// The widget uses a [StreamBuilder] to render the channel information image as soon as it updates. class ChannelName extends StatelessWidget { /// Instantiate a new ChannelName const ChannelName({ Key key, this.channel, this.textStyle, }) : super(key: key); /// The channel to show the name of final Channel channel; /// The style of the text displayed final TextStyle textStyle; @override Widget build(BuildContext context) { final client = StreamChat.of(context); final channel = this.channel ?? StreamChannel.of(context).channel; return StreamBuilder>( stream: channel.extraDataStream, initialData: channel.extraData, builder: (context, snapshot) { String title; if (snapshot.data['name'] == null) { final otherMembers = channel.state.members .where((member) => member.userId != client.user.id); if (otherMembers.isNotEmpty) { final exceedingMembers = otherMembers.length - 5; title = '${otherMembers.take(5).map((e) => e.user.name).join(', ')} ${exceedingMembers > 0 ? '+ $exceedingMembers' : ''}'; } else { title = channel.id; } } else { title = snapshot.data['name']; } return Text( title, style: textStyle, overflow: TextOverflow.ellipsis, ); }, ); } }