Integrate views

When integrating the UI of FLECS, there are various options for customising the displayed content so that views such as the marketplace view or the view of installed apps can be seamlessly embedded in a custom UI.

There are a few URL parameters that can be used for this purpose.

Switch off the header (also known as the AppBar):

// display the marketplace view without header, but with side menu
…/ui/marketplace?hideappbar=true

// display the installed apps view without header, but with side menu
…/ui?hideappbar=true

Switching off the side menu (also known as the drawer):

// display the marketplace view without side menu, but with header
…/ui/marketplace?hidedrawer=true

// display the installed apps view without side menu, but with header
…/ui?hidedrawer=true

A combination of both is also possible:

// display the marketplace view without side menu and header
…/ui/marketplace?hideappbar=true&hidedrawer=true

// display the installed apps view without side menu and header
…/ui?hideappbar=true&hidedrawer=true

Care that url parameters are case-sensitive.

Last updated