Minimal App Launch

Loads measurement UI’s lazily for minimal view and faster boot time.

Setting mdi = False in the app class definition omits loading measurement UIs at startup, reducing startup time. However, the UIs can be loaded individually later.

class FancyApp(BaseMicroscopeApp):

    name = "fancy app"
    mdi = False

mdi-false