Vuido
  • About Vuido
  • Introduction
  • Installation
    • Manual Configuration
    • Production Builds
  • Usage
    • Window Template
    • Script Section
    • Interpolations
    • Computed Properties
    • Conditionals and Loops
    • Handling User Input
    • Managing Windows
    • Displaying Dialogs
    • Custom Components
    • Using libui Classes
    • Common Attributes
  • Packaging
  • Built-in Components
    • Window
    • Containers
      • Box
      • Form
      • Group
      • Tab
    • Widgets
      • Area
        • AreaGroup
        • AreaPath
        • AreaText
      • Button
      • Checkbox
      • ColorButton
      • Combobox
      • DatePicker
      • DateTimePicker
      • DropdownList
      • FontButton
      • ProgressBar
      • RadioButtons
      • Separator
      • Slider
      • Spinbox
      • Text
      • TextArea
      • TextInput
      • TimePicker
Powered by GitBook
On this page
  • Attributes
  • margined
  • title
  • Example
  1. Built-in Components
  2. Containers

Group

A container which provides a border with a caption around its content.

The group container must contain exactly one child widget, typically another container.

Attributes

margined

type: Boolean

Whether the group adds a margin around its content.

title

type: String

The caption displayed on the group border.

Example

<Group title="Group" margined>
  <Box padded>
    ...
  </Box>
</Group>
PreviousFormNextTab

Last updated 6 years ago