Skip to content
Isaac Olajos edited this page Jan 5, 2024 · 42 revisions

Overview

The MENU widget displays a responsive full screen tiled menu.

Restrictions

  • MENU may only have ITEM children.
  • Opening an internal template with the relative url will add it to the Navigation stack but a full url will open in your device browser.

Attributes :: VisibleWidget (inherited attributes)

Name Type Req
title string
data string
color Color

Item Attributes

Name Type Req
url URL ✔️
title string
subtitle string
icon icon

Examples

Menu w/ Hardcoded Items

<FML>
    <!-- Image Background -->
    <!-- <IMAGE url="/resources/images/menu-bg.png" height="100%"/> -->
    <MENU color="transparent">
        <ITEM title="Edit" subtitle="Menu" icon="build" url="main.xml"/>
        <ITEM title="Settings" subtitle="Menu" icon="settings" url="main.xml"/>
        <ITEM title="Google" subtitle="Link" icon="insert_link" url="https://google.com"/>
    </MENU> 
</FML>

logo See it in Action

Other Widgets You May Find Useful

Clone this wiki locally