Overflow menu

An overflow menu adds a dropdown menu to an app card. You can access additional actions or options without cluttering the user interface. Use it for secondary actions such as settings, links, or message controls.

Example

Example

JSON example

{
    "content": {
        "settings": {},
        "body": [
            {
                "type": "section",
                "layout": "horizontal",
                "sections": [
                    {
                        "type": "message",
                        "text": "This is a section block with overflow menu"
                    },
                    {
                        "type": "actions",
                        "limit": 1,
                        "items": [
                            {
                                "text": "Option 1",
                                "value": "value1"
                            },
                            {
                                "text": "Option 2",
                                "value": "value2"
                            },
                            {
                                "text": "Option 3",
                                "value": "value3"
                            }
                        ],
                        "overflow": {
                            "text": "..."
                        }
                    }
                ]
            }
        ]
    }
}