[Library] mobl::ui::generic
Source: mobl.mobl
UNDER CONSTRUCTION
Functions
startLoading(loadingMessage : String = "Loading...", style : Style = progressStyle) : void
Shows a loading indicator.
Example:
startLoading();
doSomethingLongLasting();
endLoading();
Example:
startLoading("Laden...");
doSomethingLongLasting();
endLoading();
endLoading() : void
Hides the loading indicator.
Example:
startLoading();
doSomethingLongLasting();
endLoading();