uiform spacer - part-cw/lambdanative GitHub Wiki
(spacer . args)
The uiform spacer element provides a specified amount of vertical white space.
Parameter | Default | Description |
---|---|---|
height | 30 | Spacer height |
Example
Example 1: Create a spacer of 30px (default) height
(spacer)
Example 2: A complete page definition with two labels separated by a 50px high spacer
(pagename
"Title of a page"
#f ;;no backwards button
#f ;;no forwards button
(label text "Text1")
(spacer)
(label text "Text2")
)