2024-09-15 12:12:16 +00: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:
|
2024-09-15 17:57:02 +00:00
|
|
|
rgba: app.theme_cls.primaryColor
|
2024-09-15 12:12:16 +00:00
|
|
|
Rectangle:
|
|
|
|
pos: self.pos
|
|
|
|
size: self.size
|
|
|
|
|
|
|
|
MDGridLayout
|
|
|
|
------------
|
|
|
|
|
|
|
|
.. code-block::
|
|
|
|
|
|
|
|
MDGridLayout:
|
|
|
|
adaptive_height: True
|
2024-09-15 17:57:02 +00:00
|
|
|
md_bg_color: app.theme_cls.primaryColor
|
2024-09-15 12:12:16 +00:00
|
|
|
|
|
|
|
Available options are:
|
|
|
|
----------------------
|
|
|
|
|
|
|
|
- adaptive_height_
|
|
|
|
- adaptive_width_
|
|
|
|
- adaptive_size_
|
|
|
|
|
|
|
|
.. adaptive_height:
|
2024-09-15 17:57:02 +00:00
|
|
|
|
2024-09-15 12:12:16 +00:00
|
|
|
adaptive_height
|
|
|
|
---------------
|
|
|
|
|
|
|
|
.. code-block:: kv
|
|
|
|
|
|
|
|
adaptive_height: True
|
|
|
|
|
|
|
|
Equivalent
|
|
|
|
|
|
|
|
.. code-block:: kv
|
|
|
|
|
|
|
|
size_hint_y: None
|
|
|
|
height: self.minimum_height
|
|
|
|
|
|
|
|
.. adaptive_width:
|
2024-09-15 17:57:02 +00:00
|
|
|
|
2024-09-15 12:12:16 +00:00
|
|
|
adaptive_width
|
|
|
|
--------------
|
|
|
|
|
|
|
|
.. code-block:: kv
|
|
|
|
|
|
|
|
adaptive_width: True
|
|
|
|
|
|
|
|
Equivalent
|
|
|
|
|
|
|
|
.. code-block:: kv
|
|
|
|
|
|
|
|
size_hint_x: None
|
|
|
|
width: self.minimum_width
|
|
|
|
|
|
|
|
.. adaptive_size:
|
2024-09-15 17:57:02 +00:00
|
|
|
|
2024-09-15 12:12:16 +00:00
|
|
|
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.theming import ThemableBehavior
|
|
|
|
from kivymd.uix import MDAdaptiveWidget
|
2024-09-15 17:57:02 +00:00
|
|
|
from kivymd.uix.behaviors import DeclarativeBehavior, BackgroundColorBehavior
|
2024-09-15 12:12:16 +00:00
|
|
|
|
|
|
|
|
|
|
|
class MDGridLayout(
|
2024-09-15 17:57:02 +00:00
|
|
|
DeclarativeBehavior,
|
|
|
|
ThemableBehavior,
|
|
|
|
BackgroundColorBehavior,
|
|
|
|
GridLayout,
|
|
|
|
MDAdaptiveWidget,
|
2024-09-15 12:12:16 +00:00
|
|
|
):
|
|
|
|
"""
|
2024-09-15 17:57:02 +00:00
|
|
|
Grid layout class.
|
|
|
|
|
|
|
|
For more information see in the
|
|
|
|
:class:`~kivymd.uix.behaviors.declarative_behavior.DeclarativeBehavior` and
|
|
|
|
:class:`~kivymd.theming.ThemableBehavior` and
|
|
|
|
:class:`~kivymd.uix.behaviors.backgroundcolor_behavior.BackgroundColorBehavior` and
|
|
|
|
:class:`~kivy.uix.gridlayout.GridLayout` and
|
|
|
|
:class:`~kivymd.uix.MDAdaptiveWidget`
|
|
|
|
classes documentation.
|
2024-09-15 12:12:16 +00:00
|
|
|
"""
|