> For the complete documentation index, see [llms.txt](https://abdulkadir-aktas.gitbook.io/qadr_docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://abdulkadir-aktas.gitbook.io/qadr_docs/qadr_ui/info-ui.md).

# Info UI

### Video

{% embed url="<https://youtu.be/VVZhxFKe_iQ>" %}

### Example

```lua
RegisterCommand("createInfoUI",function()
    local infoData = {
        itemLabel = "Title",
        itemDescription = "Custom itemDescription", -- This value can not updateable. Only works first time.
        isVisible = true,
    }
    local infoUI = exports["qadr_ui"]:createInfoUI(infoData)
    Wait(3000)
    infoUI:update({
        itemLabel = "Title2",
    })
    Wait(3000)
    infoUI:update({
        itemLabel = "Title3",
        isVisible = false,
    })
    Wait(3000)    
    infoUI:update({
        itemLabel = "Title4",
        isVisible = true,
    })
    Wait(3000)
    infoUI:clear()
end)
```
