# Views: view--unformatted

### Key Features

* **Title Integration**: Supports the inclusion of a title for the group of rows, enhancing the structure and readability of the content.
* **Unformatted Row Rendering**: Efficiently displays each row in the view without additional formatting, keeping the focus on the content itself.
* **Default Row Class Option**: Offers the ability to use default row classes for basic styling and consistency.

### Customization Options

* **Simplicity and Clarity**: Emphasizes content without additional styling distractions, ideal for straightforward data presentation.
* **Flexible Row Classes**: Incorporates the option to add or omit default row classes based on styling preferences.

### Usage

```twig
{%
  include 'radix:views-view--unformatted' with {
    title: 'View Title',
    rows: view_rows,
    row_utility_classes: [
      'col-12',
      'col-md-6',
      'col-lg-4',
    ],
    default_row_class: true,
    rows: rows|map(row => row|merge({
      attributes: row.attributes.setAttribute('data-row-color', 'purple')
    })),
  }
%}
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.trydrupal.com/radix/components/views-view-unformatted.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
