Entry

component fbx.ui.menu.Entry

Entry is a passive menu entry. This should be a container element for anything shown in a menu.

../../../_images/menu_fancy_item.png

A menu fancy item:

Menu {
  title: "Menu2"

  // ...

  Entry {
      height: 80;
      Loading {
          anchors.fill: parent;
          anchors.margins: 5;
      }
  }
}
property enabled

Whether entry accepts user interaction. If false, keyboard navigation will never stop on this item.

Note

Default value is false.