> ## Documentation Index
> Fetch the complete documentation index at: https://cometchat-22654f5b-docs-audit-content-webhooks.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Groups With Messages

> Groups With Messages — CometChat documentation.

## Overview

`CometChatGroupsWithMessages` is a [Composite Widget](/ui-kit/flutter/v4/components-overview#composite-components) encapsulating functionalities from the [Groups](/ui-kit/flutter/v4/groups) and [Messages](/ui-kit/flutter/v4/messages) widgets. Serving as a versatile wrapper, it seamlessly integrates with `CometChatMessages`, enabling users to open the module by clicking on any group within the list. This widget inherits the behavior of Groups, fostering consistency and familiarity in user interactions.

<Tabs>
  <Tab title="Android">
    <img src="https://mintcdn.com/cometchat-22654f5b-docs-audit-content-webhooks/W0TFCZ2NyXOY9_IP/images/ab11085f-groups_with_messages_overview_cometchat_screens-f36e90a29c07c64ca17b792c658ed373.png?fit=max&auto=format&n=W0TFCZ2NyXOY9_IP&q=85&s=c4ede981dd8389b1dfb8e41e9a6ffc37" alt="Image" width="4498" height="3121" data-path="images/ab11085f-groups_with_messages_overview_cometchat_screens-f36e90a29c07c64ca17b792c658ed373.png" />
  </Tab>

  <Tab title="iOS">
    <img src="https://mintcdn.com/cometchat-22654f5b-docs-audit-content-webhooks/SIU3NLl8GrgWvCMj/images/4c98df00-groups_with_messages_overview_cometchat_screens-faff928e609a91fbc68a2827e1f5549e.png?fit=max&auto=format&n=SIU3NLl8GrgWvCMj&q=85&s=e1a678f26d0cd4af1d08032488748720" alt="Image" width="4498" height="3121" data-path="images/4c98df00-groups_with_messages_overview_cometchat_screens-faff928e609a91fbc68a2827e1f5549e.png" />
  </Tab>
</Tabs>

| Widgets                                 | Description                                                                                                                 |
| --------------------------------------- | --------------------------------------------------------------------------------------------------------------------------- |
| [Groups](/ui-kit/flutter/v4/groups)     | The `Groups` widget is designed to display a list of `Groups`. This essentially represents the recent conversation history. |
| [Messages](/ui-kit/flutter/v4/messages) | The `Messages` widget is designed to manage the messaging interaction for `Group's` conversations.                          |

## Usage

### Integration

As `CometChatGroupsWithMessages` is a widget, it can be effortlessly added directly in response to a button click or any event. Leveraging all the customizable properties and methods inherited from Groups, this widget offers seamless integration and extensive customization capabilities. This makes it a versatile solution for enhancing user interaction within your application.

You can launch `CometChatGroupsWithMessages` directly using `Navigator.push`, or you can define it as a widget within the `build` method of your `State` class.

##### 1. Using Navigator to Launch `CometChatGroupsWithMessages`

<Tabs>
  <Tab title="Dart">
    ```dart theme={null}
    Navigator.push(context, MaterialPageRoute(builder: (context) => const CometChatGroupsWithMessages()));
    ```
  </Tab>
</Tabs>

##### 2. Embedding `CometChatGroupsWithMessages` as a Widget in the build Method

<Tabs>
  <Tab title="Dart">
    ```dart theme={null}
    import 'package:cometchat_chat_uikit/cometchat_chat_uikit.dart';
    import 'package:flutter/material.dart';

    class CometChatGroupsWithMessages extends StatefulWidget {
      const CometChatGroupsWithMessages({super.key});

      @override
      State<CometChatGroupsWithMessages> createState() => _CometChatGroupsWithMessagesState();
    }

    class _CometChatGroupsWithMessagesState extends State<CometChatGroupsWithMessages> {

      @override
      Widget build(BuildContext context) {
        return const Scaffold(
            body: SafeArea(
                child: CometChatGroupsWithMessages()
            )
        );
      }
    }
    ```
  </Tab>
</Tabs>

***

### Actions

[Actions](/ui-kit/flutter/v4/components-overview#actions) dictate how a widget functions. They are divided into two types: Predefined and User-defined. You can override either type, allowing you to tailor the behavior of the widget to fit your specific needs.

##### 1. onItemTap

This method proves valuable when users seek to override onItemTap functionality within `CometChatGroupsWithMessages`, empowering them with greater control and customization options.

The `onItemTap` action doesn't have a predefined behavior. You can override this action using the following code snippet.

<Tabs>
  <Tab title="Dart">
    ```dart theme={null}
    CometChatGroupsWithMessages(
      groupsConfiguration: GroupsConfiguration(
        onItemTap: (context, group) {
          // TODO("Not yet implemented")
        },
      ),
    )
    ```
  </Tab>
</Tabs>

***

##### 2. onBack

Enhance your application's functionality by leveraging the `onBack` feature. This capability allows you to customize the behavior associated with navigating back within your app. Utilize the provided code snippet to override default behaviors and tailor the user experience according to your specific requirements.

<Tabs>
  <Tab title="Dart">
    ```dart theme={null}
    CometChatGroupsWithMessages(
      groupsConfiguration: GroupsConfiguration(
        onBack: () {
          // TODO("Not yet implemented")
        },
      ),
    )
    ```
  </Tab>
</Tabs>

***

##### 3. onError

You can customize this behavior by using the provided code snippet to override the `onError` and improve error handling.

<Tabs>
  <Tab title="Dart">
    ```dart theme={null}
    CometChatGroupsWithMessages(
      groupsConfiguration: GroupsConfiguration(
        onError: (e) {
          // TODO("Not yet implemented")
        },
      ),
    )
    ```
  </Tab>
</Tabs>

***

##### 4. onItemLongPress

This method becomes invaluable when users seek to override long-click functionality within `CometChatGroupsWithMessages`, offering them enhanced control and flexibility in their interactions.

The `onItemLongPress` action doesn't have a predefined behavior. You can override this action using the following code snippet.

<Tabs>
  <Tab title="Dart">
    ```dart theme={null}
    CometChatGroupsWithMessages(
      groupsConfiguration: GroupsConfiguration(
        onItemLongPress: (context, group) {
          // TODO("Not yet implemented")
        },
      ),
    )
    ```
  </Tab>
</Tabs>

***

### Filters

**Filters** allow you to customize the data displayed in a list within a widget. You can filter the list based on your specific criteria, allowing for a more customized. Filters can be applied using RequestBuilders of Chat SDK.

While the `CometChatGroupsWithMessages` widget does not have filters, its widgets do, For more detail on individual filters of its widget refer to [Groups Filters](/ui-kit/flutter/v4/groups#filters) and [Messages Filters](/ui-kit/flutter/v4/messages#filters).

By utilizing the [Configurations](#configurations) object of its widgets, you can apply filters.

In the following **example**, we are applying a filter to the Group List based on only joined groups and setting the limit to 3 using the `groupsRequestBuilder`.

<Tabs>
  <Tab title="Dart">
    ```dart theme={null}
    CometChatGroupsWithMessages(
      groupsConfiguration: GroupsConfiguration(
        groupsRequestBuilder: GroupsRequestBuilder()
          ..limit = 10,
      ),
    )
    ```
  </Tab>
</Tabs>

***

### Events

[Events](/ui-kit/flutter/v4/components-overview#events) are emitted by a `widget`. By using event you can extend existing functionality. Being global events, they can be applied in Multiple Locations and are capable of being Added or Removed.

The `CometChatGroupsWithMessages` does not produce any events but its subwidget does.

***

## Customization

To fit your app's design requirements, you have the ability to customize the appearance of the `CometChatGroupsWithMessages` widget. We provide exposed methods that allow you to modify the experience and behavior according to your specific needs.

### Style

Using **Style** you can **customize** the look and feel of the widget in your app, These parameters typically control elements such as the **color**, **size**, **shape**, and **fonts** used within the widget.

##### 1. CometChatGroupsWithMessages Style 🛑

You can set the `groupsWithMessagesStyle` to the `CometChatGroupsWithMessages` Widget to customize the styling.

<Tabs>
  <Tab title="Dart">
    ```dart theme={null}
    CometChatGroupsWithMessages(
      groupsConfiguration: GroupsConfiguration(
        groupsStyle: GroupsStyle(
            background: Color(0xFFE4EBF5),
            titleStyle: TextStyle(color: Colors.red),
            backIconTint: Colors.red
        ),
      ),
    )
    ```
  </Tab>
</Tabs>

<Tabs>
  <Tab title="Android">
    <img src="https://mintcdn.com/cometchat-22654f5b-docs-audit-content-webhooks/2xNny9K-x0AIgQXg/images/35f8afc3-groups_with_messages_configurations_groups_cometchat_screens-0e01e95a2f5302ec9f7ae6e254c39b13.png?fit=max&auto=format&n=2xNny9K-x0AIgQXg&q=85&s=7e94fc3f1b54ae9914ff27f62efdd31e" alt="Image" width="4498" height="3121" data-path="images/35f8afc3-groups_with_messages_configurations_groups_cometchat_screens-0e01e95a2f5302ec9f7ae6e254c39b13.png" />
  </Tab>

  <Tab title="iOS">
    <img src="https://mintcdn.com/cometchat-22654f5b-docs-audit-content-webhooks/9fXSeDIZdfRZBzT6/images/1ba330a8-groups_with_messages_configurations_groups_cometchat_screens-f2900c4fb9cbbff8287bb56fde062282.png?fit=max&auto=format&n=9fXSeDIZdfRZBzT6&q=85&s=6755e52887616c20b3324314034c975d" alt="Image" width="4498" height="3121" data-path="images/1ba330a8-groups_with_messages_configurations_groups_cometchat_screens-f2900c4fb9cbbff8287bb56fde062282.png" />
  </Tab>
</Tabs>

You can also customize its widget styles. For more details on individual widget styles, you can refer [Groups Styles](/ui-kit/flutter/v4/groups#style) and [Messages Styles](/ui-kit/flutter/v4/messages#style).

Styles can be applied to Sub widgets using their respective [configurations](#configurations).

***

### Functionality

These are a set of **small functional customizations** that allow you to **fine-tune** the overall experience of the widget. With these, you can **change text**, set **custom icons**, and toggle the **visibility** of UI elements.

`CometChatGroupsWithMessages` widget does not have any available functionality. You can use Functional customisation its [Widgets](/ui-kit/flutter/v4/components-overview#components). For more details on individual widget functionalities, you can refer [Groups Functionalities](/ui-kit/flutter/v4/groups#functionality) and [Messages functionalities](/ui-kit/flutter/v4/messages#functionality).

***

### Advanced

For advanced-level customization, you can set custom widget to the widget. This lets you tailor each aspect of the widget to fit your exact needs and application aesthetics. You can create and define your own widget and then incorporate those into the widget.

`CometChatGroupsWithMessages` widget does not have any advanced-level customization . You can use Advanced customisation its [Widgets](/ui-kit/flutter/v4/components-overview#components). For more details on individual widget functionalities, you can refer [Groups Advanced](/ui-kit/flutter/v4/groups#advance) and [Messages Advanced](/ui-kit/flutter/v4/messages#advanced).

`CometChatGroupsWithMessages` uses advanced-level customization of both Groups & Messages widgets to achieve its default behavior.

##### 1. SubtitleView

You can customize the subtitle widget for each `CometChatGroupsWithMessages` item to meet your requirements

<Tabs>
  <Tab title="Dart">
    ```dart theme={null}
    CometChatGroupsWithMessages(
      groupsConfiguration: GroupsConfiguration(
        subtitleView: (context, conversation) {
          return const Row(
            children: [
              Icon(Icons.call, color: Color(0xFF6851D6), size: 25,),
              SizedBox(width: 10),
              Icon(Icons.video_call, color: Color(0xFF6851D6), size: 25,),
            ],
          );
        },
      ),
    )
    ```
  </Tab>
</Tabs>

<Tabs>
  <Tab title="Android">
    <img src="https://mintcdn.com/cometchat-22654f5b-docs-audit-content-webhooks/74Lpy3GzpqtFJPKm/images/43584882-groups_with_messages_subtitle_view_cometchat_screens-95282c7474c1fd3fec412ab38976e155.png?fit=max&auto=format&n=74Lpy3GzpqtFJPKm&q=85&s=23f41f11b86aa90f455cfcb188e7beda" alt="Image" width="4498" height="3121" data-path="images/43584882-groups_with_messages_subtitle_view_cometchat_screens-95282c7474c1fd3fec412ab38976e155.png" />
  </Tab>

  <Tab title="iOS">
    <img src="https://mintcdn.com/cometchat-22654f5b-docs-audit-content-webhooks/CPpOwQ6tJe7YNAEX/images/e1ebbad2-groups_with_messages_subtitle_view_cometchat_screens-1f455e2024a5bf14be4e40460f1288ae.png?fit=max&auto=format&n=CPpOwQ6tJe7YNAEX&q=85&s=effa745eae66e3b94351d556dd0308ea" alt="Image" width="4498" height="3121" data-path="images/e1ebbad2-groups_with_messages_subtitle_view_cometchat_screens-1f455e2024a5bf14be4e40460f1288ae.png" />
  </Tab>
</Tabs>

***

##### 2. AppBarOptions

You can set the Custom AppBarOptions to the `CometChatGroupsWithMessages` widget.

<Tabs>
  <Tab title="Dart">
    ```dart theme={null}
    CometChatGroupsWithMessages(
      groupsConfiguration: GroupsConfiguration(
        appBarOptions: (context) {
          return [
            InkWell(
              onTap: () {
                // TODO("Not yet implemented")
              },
              child: const Icon(Icons.ac_unit, color: Color(0xFF6851D6)),
            ),
            const SizedBox(width: 10)
          ];
        },
      ),
    )
    ```
  </Tab>
</Tabs>

<Tabs>
  <Tab title="Android">
    <img src="https://mintcdn.com/cometchat-22654f5b-docs-audit-content-webhooks/nrKmc8-pXdAch9Hn/images/6d17410f-groups_with_messages_menu_view_cometchat_screens-b2528f22c9d09596b5ade2ccf7093730.png?fit=max&auto=format&n=nrKmc8-pXdAch9Hn&q=85&s=714e15a8839c35d6524484f4a90efeb4" alt="Image" width="4498" height="3121" data-path="images/6d17410f-groups_with_messages_menu_view_cometchat_screens-b2528f22c9d09596b5ade2ccf7093730.png" />
  </Tab>

  <Tab title="iOS">
    <img src="https://mintcdn.com/cometchat-22654f5b-docs-audit-content-webhooks/8XbB1iSxoMx7WJAy/images/8a907cd4-groups_with_messages_menu_view_cometchat_screens-c41f8b75a03093928553dfff2ab625da.png?fit=max&auto=format&n=8XbB1iSxoMx7WJAy&q=85&s=7f5b3ed0cd4c9fe67cff33fb8e0bcc02" alt="Image" width="4498" height="3121" data-path="images/8a907cd4-groups_with_messages_menu_view_cometchat_screens-c41f8b75a03093928553dfff2ab625da.png" />
  </Tab>
</Tabs>

***

## Configurations

[Configurations](/ui-kit/flutter/v4/components-overview#configurations) offer the ability to customize the properties of each widget within a Composite widget.

**CometChatGroupsWithMessages** has `Groups` and `Messages` widget. Hence, each of these widgets will have its individual `Configuration`. `Configurations` expose properties that are available in its individual widgets.

#### Groups

You can customize the properties of the Groups widget by making use of the GroupsConfiguration. You can accomplish this by employing the following method as demonstrated below:

<Tabs>
  <Tab title="Dart">
    ```dart theme={null}
    CometChatGroupsWithMessages(
      groupsConfiguration: GroupsConfiguration(
        // TODO("Not yet implemented")
      ),
    )
    ```
  </Tab>
</Tabs>

All exposed properties of `GroupsConfiguration` can be found under [Groups](/ui-kit/flutter/v4/groups#configuration). Properties marked with the 🛑 symbol are not accessible within the Configuration Object.

**Example**

Let's say you want to change the style of the Groups sub widget

You can modify the style using the `GroupsStyle` method.

<Tabs>
  <Tab title="Dart">
    ```dart theme={null}
    CometChatGroupsWithMessages(
      groupsConfiguration: GroupsConfiguration(
        groupsStyle: GroupsStyle(
            background: Color(0xFFFAE6FA),
            titleStyle: TextStyle(color: Colors.red),
            backIconTint: Colors.red
        ),
      ),
    )
    ```
  </Tab>
</Tabs>

<Tabs>
  <Tab title="Android">
    <img src="https://mintcdn.com/cometchat-22654f5b-docs-audit-content-webhooks/2xNny9K-x0AIgQXg/images/35f8afc3-groups_with_messages_configurations_groups_cometchat_screens-0e01e95a2f5302ec9f7ae6e254c39b13.png?fit=max&auto=format&n=2xNny9K-x0AIgQXg&q=85&s=7e94fc3f1b54ae9914ff27f62efdd31e" alt="Image" width="4498" height="3121" data-path="images/35f8afc3-groups_with_messages_configurations_groups_cometchat_screens-0e01e95a2f5302ec9f7ae6e254c39b13.png" />
  </Tab>

  <Tab title="iOS">
    <img src="https://mintcdn.com/cometchat-22654f5b-docs-audit-content-webhooks/9fXSeDIZdfRZBzT6/images/1ba330a8-groups_with_messages_configurations_groups_cometchat_screens-f2900c4fb9cbbff8287bb56fde062282.png?fit=max&auto=format&n=9fXSeDIZdfRZBzT6&q=85&s=6755e52887616c20b3324314034c975d" alt="Image" width="4498" height="3121" data-path="images/1ba330a8-groups_with_messages_configurations_groups_cometchat_screens-f2900c4fb9cbbff8287bb56fde062282.png" />
  </Tab>
</Tabs>

***

#### Messages

You can customize the properties of the Messages widget by making use of the `messagesConfiguration`. You can accomplish this by employing the `messagesConfiguration` as demonstrated below:

<Tabs>
  <Tab title="Dart">
    ```dart theme={null}
    CometChatGroupsWithMessages(
      messageConfiguration: MessageConfiguration(
        // TODO("Not yet implemented")
      ),
    )
    ```
  </Tab>
</Tabs>

All exposed properties of `MessagesConfiguration` can be found under [Messages](/ui-kit/flutter/v4/messages#configuration). Properties marked with the 🛑 symbol are not accessible within the Configuration Object.

**Example**

Let's say you want to change the style of the Messages sub widget and, in addition, you want to hide message composer.

You can modify the style using the `messagesStyle` method and hide using `hideMessageComposer` method.

<Tabs>
  <Tab title="Dart">
    ```dart theme={null}
    CometChatGroupsWithMessages(
      messageConfiguration: MessageConfiguration(
        disableTyping: true,
        hideMessageComposer: true,
        messagesStyle: MessagesStyle(
          background: Color(0xFFE4EBF5),
        )
      ),
    )
    ```
  </Tab>
</Tabs>

<Tabs>
  <Tab title="Android">
    <img src="https://mintcdn.com/cometchat-22654f5b-docs-audit-content-webhooks/nrKmc8-pXdAch9Hn/images/7310ff4a-groups_with_messages_configurations_messages_cometchat_screens-3a217eec9300cd01f7935b8666fab29c.png?fit=max&auto=format&n=nrKmc8-pXdAch9Hn&q=85&s=5b2f94633e108624735e2b6e5caa44df" alt="Image" width="4498" height="3121" data-path="images/7310ff4a-groups_with_messages_configurations_messages_cometchat_screens-3a217eec9300cd01f7935b8666fab29c.png" />
  </Tab>

  <Tab title="iOS">
    <img src="https://mintcdn.com/cometchat-22654f5b-docs-audit-content-webhooks/qwv2C0wM1Djl_VYB/images/f4d0fa61-groups_with_messages_configurations_messages_cometchat_screens-52a210d34648b176e48d889269e3bfab.png?fit=max&auto=format&n=qwv2C0wM1Djl_VYB&q=85&s=8cdad1ff4c9513e17611efaa5b5949d6" alt="Image" width="4498" height="3121" data-path="images/f4d0fa61-groups_with_messages_configurations_messages_cometchat_screens-52a210d34648b176e48d889269e3bfab.png" />
  </Tab>
</Tabs>

#### Join Protected Group

You can customize the properties of the Join Group widget by making use of the JoinGroupConfiguration. You can accomplish this by employing the `JoinProtectedGroupConfiguration` class as demonstrated below:

<Tabs>
  <Tab title="Dart">
    ```dart theme={null}
    CometChatGroupsWithMessages(
      joinProtectedGroupConfiguration: JoinProtectedGroupConfiguration(
        // TODO("Not yet implemented")
      ),
    )
    ```
  </Tab>
</Tabs>

All exposed properties of `JoinProtectedGroupConfiguration` can be found under Join Group. Properties marked with the report symbol are not accessible within the Configuration Object.

**Example**

Let's say you want to change the style of the Join Group sub widget.

You can modify the style using the `JoinProtectedGroupStyle` property.

<Tabs>
  <Tab title="Dart">
    ```dart theme={null}
    CometChatGroupsWithMessages(
      joinProtectedGroupConfiguration: JoinProtectedGroupConfiguration(
        joinProtectedGroupStyle: JoinProtectedGroupStyle(
          background: Color(0xFFE4EBF5),
          titleStyle: TextStyle(color: Colors.red)
        )
      ),
    )
    ```
  </Tab>
</Tabs>

<Tabs>
  <Tab title="Android">
    <img src="https://mintcdn.com/cometchat-22654f5b-docs-audit-content-webhooks/74Lpy3GzpqtFJPKm/images/4197988a-groups_with_messages_configurations_password_procted_group_cometchat_screens-503960b586e6d4c9ad79215fc202ccc5.png?fit=max&auto=format&n=74Lpy3GzpqtFJPKm&q=85&s=bb1b1f1e9fa6fe4289d1b8a2419ed41c" alt="Image" width="4498" height="3121" data-path="images/4197988a-groups_with_messages_configurations_password_procted_group_cometchat_screens-503960b586e6d4c9ad79215fc202ccc5.png" />
  </Tab>

  <Tab title="iOS">
    <img src="https://mintcdn.com/cometchat-22654f5b-docs-audit-content-webhooks/_FJLMq1zvjiq9K4Y/images/13ca332f-groups_with_messages_configurations_password_procted_group_cometchat_screens-392e6aee6ea2d2366899452aef410aec.png?fit=max&auto=format&n=_FJLMq1zvjiq9K4Y&q=85&s=e732f8efb6514df59e5db52787322c01" alt="Image" width="4498" height="3121" data-path="images/13ca332f-groups_with_messages_configurations_password_procted_group_cometchat_screens-392e6aee6ea2d2366899452aef410aec.png" />
  </Tab>
</Tabs>

***

#### Create Group

You can customize the properties of the Create Group widget by making use of the CreateGroupConfiguration. You can accomplish this by employing the `createGroupConfiguration` props as demonstrated below:

<Tabs>
  <Tab title="Dart">
    ```dart theme={null}
    CometChatGroupsWithMessages(
      createGroupConfiguration: CreateGroupConfiguration(
        // TODO("Not yet implemented")
      ),
    )
    ```
  </Tab>
</Tabs>

All exposed properties of `CreateGroupConfiguration` can be found under [Create Group](/ui-kit/flutter/v4/create-group#configurations). Properties marked with the 🛑 symbol are not accessible within the Configuration Object.

**Example**

Let's say you want to change the style of the Create Group sub widget.

You can modify the style using the `createGroupStyle` property.

<Tabs>
  <Tab title="Dart">
    ```dart theme={null}
    CometChatGroupsWithMessages(
      createGroupConfiguration: CreateGroupConfiguration(
        createGroupStyle: CreateGroupStyle(
          background: Color(0xFFE4EBF5),
          titleTextStyle: TextStyle(color: Colors.red, fontFamily: "PlaywritePL")
        )
      ),
    )
    ```
  </Tab>
</Tabs>

<Tabs>
  <Tab title="Android">
    <img src="https://mintcdn.com/cometchat-22654f5b-docs-audit-content-webhooks/wKi_davWP7OPe0wz/images/9cb87d31-groups_with_messages_configurations_create_group_cometchat_screens-8607369fd253fa5a7455fa81d6a635d4.png?fit=max&auto=format&n=wKi_davWP7OPe0wz&q=85&s=3b1aaf68e29100c731d2894ebe1dd60c" alt="Image" width="4498" height="3121" data-path="images/9cb87d31-groups_with_messages_configurations_create_group_cometchat_screens-8607369fd253fa5a7455fa81d6a635d4.png" />
  </Tab>

  <Tab title="iOS">
    <img src="https://mintcdn.com/cometchat-22654f5b-docs-audit-content-webhooks/cD2BDn03AOl0XRHO/images/065743b5-groups_with_messages_configurations_create_group_cometchat_screens-d16b97452c21a609792f767b23778acc.png?fit=max&auto=format&n=cD2BDn03AOl0XRHO&q=85&s=d3d51d16bf66b11368ac006b383f0595" alt="Image" width="4498" height="3121" data-path="images/065743b5-groups_with_messages_configurations_create_group_cometchat_screens-d16b97452c21a609792f767b23778acc.png" />
  </Tab>
</Tabs>

***
