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

# Quick View

> Quick View — CometChat documentation.

CometChat's Quick View component allows you to create a quick overview panel with a title, subtitle, and an optional close button.

## Attributes

| Properties            | Type      | Description                                                                      |
| --------------------- | --------- | -------------------------------------------------------------------------------- |
| **title**             | string    | The title for the Quick View.                                                    |
| **subtitle**          | string    | The subtitle for the Quick View.                                                 |
| **titleTextStyle**    | TextStyle | The URL for the close icon. If not provided, a default close icon will be used.  |
| **subtitleTextStyle** | TextStyle | A boolean to determine whether to hide the close icon. By default, it is `true`. |
| **background**        | Color     | An instance of `QuickViewStyle` class to style the Quick View.                   |

***

## Usage

<Tabs>
  <Tab title="Dart">
    ```dart theme={null}
    CometChatQuickView(title: 'Interactive Message',
        subtitle: "Hey how are you",
        background: Colors.green,
        subtitleTextStyle: TextStyle(color: Colors.red),
    )
    ```
  </Tab>
</Tabs>
