summaryrefslogtreecommitdiffstats
path: root/example/layouts
AgeCommit message (Collapse)Author
2023-03-15chore(assets): update layout examples to .kdl from .yaml (#2250)Cale Flatley
2021-12-09chore: update example layout (#926)Jae-Heon Ji
2021-08-26Split tab-layout into `template` & `tabs` sectiona-kenji
* adjust example layouts and move them from `./example` to `./example/layouts` * simplify the deserialization of the layout * layouts are now constructed as follows: ``` --- template: direction: Horizontal parts: - direction: Vertical borderless: true split_size: Fixed: 1 run: plugin: tab-bar - direction: Vertical body: true # <== The body section specifies the position of the # inserted tab - direction: Vertical borderless: true split_size: Fixed: 2 run: plugin: status-bar tabs: - direction: Vertical - direction: Vertical ```