2022-07-07 22:16:10 +02:00
|
|
|
"""
|
|
|
|
Components/GridLayout
|
|
|
|
=====================
|
|
|
|
|
|
|
|
:class:`~kivy.uix.gridlayout.GridLayout` class equivalent. Simplifies working
|
|
|
|
with some widget properties. For example:
|
|
|
|
|
|
|
|
GridLayout
|
|
|
|
----------
|
|
|
|
|
|
|
|
.. code-block::
|
|
|
|
|
|
|
|
GridLayout:
|
|
|
|
size_hint_y: None
|
|
|
|
height: self.minimum_height
|
|
|
|
|
|
|
|
canvas:
|
|
|
|
Color:
|
|
|
|
rgba: app.theme_cls.primary_color
|
|
|
|
Rectangle:
|
|
|
|
pos: self.pos
|
|
|
|
size: self.size
|
|
|
|
|
|
|
|
MDGridLayout
|
|
|
|
------------
|
|
|
|
|
|
|
|
.. code-block::
|
|
|
|
|
|
|
|
MDGridLayout:
|
|
|
|
adaptive_height: True
|
|
|
|
md_bg_color: app.theme_cls.primary_color
|
|
|
|
|
|
|
|
Available options are:
|
|
|
|
----------------------
|
|
|
|
|
|
|
|
- adaptive_height_
|
|
|
|
- adaptive_width_
|
|
|
|
- adaptive_size_
|
|
|
|
|
|
|
|
.. adaptive_height:
|
|
|
|
adaptive_height
|
|
|
|
---------------
|
|
|
|
|
|
|
|
.. code-block:: kv
|
|
|
|
|
|
|
|
adaptive_height: True
|
|
|
|
|
|
|
|
Equivalent
|
|
|
|
|
|
|
|
.. code-block:: kv
|
|
|
|
|
|
|
|
size_hint_y: None
|
|
|
|
height: self.minimum_height
|
|
|
|
|
|
|
|
.. adaptive_width:
|
|
|
|
adaptive_width
|
|
|
|
--------------
|
|
|
|
|
|
|
|
.. code-block:: kv
|
|
|
|
|
|
|
|
adaptive_width: True
|
|
|
|
|
|
|
|
Equivalent
|
|
|
|
|
|
|
|
.. code-block:: kv
|
|
|
|
|
|
|
|
size_hint_x: None
|
|
|
|
width: self.minimum_width
|
|
|
|
|
|
|
|
.. adaptive_size:
|
|
|
|
adaptive_size
|
|
|
|
-------------
|
|
|
|
|
|
|
|
.. code-block:: kv
|
|
|
|
|
|
|
|
adaptive_size: True
|
|
|
|
|
|
|
|
Equivalent
|
|
|
|
|
|
|
|
.. code-block:: kv
|
|
|
|
|
|
|
|
size_hint: None, None
|
|
|
|
size: self.minimum_size
|
|
|
|
"""
|
|
|
|
|
|
|
|
from kivy.uix.gridlayout import GridLayout
|
|
|
|
|
|
|
|
from kivymd.uix import MDAdaptiveWidget
|
2022-10-02 17:16:59 +02:00
|
|
|
from kivymd.uix.behaviors import DeclarativeBehavior
|
2022-07-07 22:16:10 +02:00
|
|
|
|
|
|
|
|
2022-10-02 17:16:59 +02:00
|
|
|
class MDGridLayout(DeclarativeBehavior, GridLayout, MDAdaptiveWidget):
|
|
|
|
"""
|
|
|
|
Grid layout class. For more information, see in the
|
|
|
|
:class:`~kivy.uix.gridlayout.GridLayout` class documentation.
|
|
|
|
"""
|