mirror of
https://github.com/slint-ui/slint.git
synced 2025-09-06 10:30:37 +00:00
17 lines
626 B
Text
17 lines
626 B
Text
// Copyright © SixtyFPS GmbH <info@slint.dev>
|
|
// SPDX-License-Identifier: GPL-3.0-only OR LicenseRef-Slint-Royalty-free-2.0 OR LicenseRef-Slint-Software-3.0
|
|
|
|
import { LayoutSpec } from "std-widgets-impl.slint";
|
|
|
|
export component VerticalBox inherits VerticalLayout {
|
|
spacing: LayoutSpec .layout-spacing;
|
|
padding: LayoutSpec .layout-padding;
|
|
}
|
|
export component HorizontalBox inherits HorizontalLayout {
|
|
spacing: LayoutSpec .layout-spacing;
|
|
padding: LayoutSpec .layout-padding;
|
|
}
|
|
export component GridBox inherits GridLayout {
|
|
spacing: LayoutSpec .layout-spacing;
|
|
padding: LayoutSpec .layout-padding;
|
|
}
|