Preferences
Revision as of 17:55, 13 March 2020 by Durable-navy-blue-otter (talk | contribs) (Created page with " A preferences block is used to describe the user interface to interact with your application. == Example == <pre>preferences { page(name: "mainPage", title: "Title", ins...")
A preferences block is used to describe the user interface to interact with your application.
Example
preferences {
page(name: "mainPage", title: "Title", install: true, uninstall: true) {
section("") {
}
}
}