FLECS
HomeMarketplaceRessourcesGet started
Engineering
Engineering
  • API Docs
    • FLECS Console API
      • Welcome!
      • Quick Start
      • API Reference
        • Authentication
        • Users
        • Products
        • Device
        • Apps
    • FLECS Core API
      • API Reference
        • System
        • Device
        • Console
        • Instances
        • Apps
        • Jobs
  • App Publishing Guide
    • 💡Overview
    • 🪛How to create a FLECS app
    • 🚀How to release a FLECS app
    • 🧳App Publishing Packages
    • 📶Network
  • FLECS Core
    • Install FLECS Core Using Docker
  • White Labeling
    • Integrate views
    • On-premise hosting of apps
Powered by GitBook
On this page

Was this helpful?

  1. White Labeling

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.

PreviousInstall FLECS Core Using DockerNextOn-premise hosting of apps

Last updated 6 months ago

Was this helpful?