CardsLayout QML Type
A GridLayout optimized for showing one or two columns of cards, depending on the available space. More...
Import Statement: | import org.kde.kirigami |
Since: | 2.4 |
Inherits: |
Properties
- maximumColumnWidth : int
- maximumColumns : int
(since 2.5)
- minimumColumnWidth : int
(since 2.5)
Detailed Description
It Should be used when the cards are not instantiated by a model or by a model which has always very few items.
They are presented as a grid of two columns which will remain centered if the application is really wide, or become a single column if there is not enough space for two columns, such as a mobile phone screen.
A CardsLayout should always be contained within a ColumnLayout.
Property Documentation
maximumColumnWidth : int |
This property holds the maximum width the columns may have.
The cards will never become wider than this size; when the GridLayout is wider than maximumColumnWidth, it will switch from one to two columns.
If the default needs to be overridden for some reason, it is advised to express this unit as a multiple of Kirigami.Units.gridUnit.
default: 20 * Kirigami.Units.gridUnit
maximumColumns : int |
This property holds the maximum number of columns.
This layout will never lay out the items in more columns than maximumColumns
default: 2
This property was introduced in 2.5.
minimumColumnWidth : int |
This property holds the minimum width the columns may have.
The layout will try to dispose of items in a number of columns that will respect this size constraint.
default: 12 * Kirigami.Units.gridUnit
This property was introduced in 2.5.