Tuner.Expander
An expandable row that contains other settings rows.
| Property | Type | Description |
|---|---|---|
title | string | Row title |
subtitle | string | Text under the title |
show-enable-switch | bool | Show a switch that controls the expansion |
Unlike most widgets, the binding is optional here. If set, it is bound to the expansion state — together with show-enable-switch this makes a group of settings that can be turned on and off as a whole.
blp
Tuner.Expander {
title: _("Advanced");
Tuner.Switch {
title: _("Experimental feature");
binding: Tuner.Setting {
schema-id: "org.example.app";
schema-key: "experimental";
};
}
}