2024-09-15 12:12:16 +00:00
|
|
|
"""
|
|
|
|
Components/StackLayout
|
|
|
|
======================
|
|
|
|
|
|
|
|
:class:`~kivy.uix.stacklayout.StackLayout` class equivalent. Simplifies working
|
|
|
|
with some widget properties. For example:
|
|
|
|
|
|
|
|
StackLayout
|
|
|
|
-----------
|
|
|
|
|
|
|
|
.. code-block:: kv
|
|
|
|
|
|
|
|
StackLayout:
|
|
|
|
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
|
|
|
|
|
|
|
|
MDStackLayout
|
|
|
|
-------------
|
|
|
|
|
|
|
|
.. code-block:: kv
|
|
|
|
|
|
|
|
MDStackLayout:
|
|
|
|
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
|
|
|
|
"""
|
|
|
|
|
|
|
|
__all__ = ("MDStackLayout",)
|
|
|
|
|
|
|
|
from kivy.uix.stacklayout import StackLayout
|
|
|
|
|
|
|
|
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 MDStackLayout(
|
2024-09-15 17:57:02 +00:00
|
|
|
DeclarativeBehavior,
|
|
|
|
ThemableBehavior,
|
|
|
|
BackgroundColorBehavior,
|
|
|
|
StackLayout,
|
|
|
|
MDAdaptiveWidget,
|
2024-09-15 12:12:16 +00:00
|
|
|
):
|
|
|
|
"""
|
2024-09-15 17:57:02 +00:00
|
|
|
Stack 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.stacklayout.StackLayout` and
|
|
|
|
:class:`~kivymd.uix.MDAdaptiveWidget`
|
|
|
|
classes documentation.
|
2024-09-15 12:12:16 +00:00
|
|
|
"""
|