Chat UIKit Flutter v3
Chat UIKit Flutter
Chat UIKit
Flutter
Version 3

Configure group channel settings

Copy link

You can configure the settings of each group channel. Customizable settings include channel name, cover image, and notifications. You can also leave the channel. For channel operators, you can view the moderation menu.


Group channel settings screen

Copy link

Note: Search in channel is not supported in the beta version.


The messageCollectionNo parameter in SBUGroupChannelInformationScreen constructor is required and the others are optional.

Widget screen = SBUGroupChannelInformationScreen(
  messageCollectionNo: collectionNoInSBUGroupChannelScreen, // Required parameter
  onChannelLeft: (channel) {
    // Move to SBUGroupChannelListScreen.
  },
  onModerationsButtonClicked: (channel) {
    // Move to SBUGroupChannelModerationsScreen.
  },
  onMembersButtonClicked: (channel) {
    // Move to SBUGroupChannelMembersScreen.
  }
);