CardsLayout
Properties | |
int | maximumColumns |
int | maximumColumnWidth |
int | minimumColumnWidth |
Detailed Description
A GridLayout optimized for showing one or two columns of cards, depending on the available space.
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.
- Since
- 2.4
Definition at line 26 of file CardsLayout.qml.
Property Documentation
◆ maximumColumns
|
read |
This property holds the maximum number of columns.
This layout will never lay out the items in more columns than maximumColumns
default: 2
- Since
- 2.5
Definition at line 37 of file CardsLayout.qml.
◆ maximumColumnWidth
|
read |
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
Definition at line 50 of file CardsLayout.qml.
◆ minimumColumnWidth
|
read |
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
- Since
- 2.5
Definition at line 61 of file CardsLayout.qml.
The documentation for this class was generated from the following file:
Documentation copyright © 1996-2024 The KDE developers.
Generated on Mon Nov 18 2024 12:16:21 by doxygen 1.12.0 written by Dimitri van Heesch, © 1997-2006
KDE's Doxygen guidelines are available online.