mirror of
https://github.com/liberatedsystems/Sideband_CE.git
synced 2024-09-03 04:13:27 +02:00
46 lines
1.0 KiB
Python
46 lines
1.0 KiB
Python
"""
|
|
Components/RelativeLayout
|
|
=========================
|
|
|
|
:class:`~kivy.uix.relativelayout.RelativeLayout` class equivalent.
|
|
Simplifies working with some widget properties. For example:
|
|
|
|
RelativeLayout
|
|
--------------
|
|
|
|
.. code-block:: kv
|
|
|
|
RelativeLayout:
|
|
canvas:
|
|
Color:
|
|
rgba: app.theme_cls.primary_color
|
|
RoundedRectangle:
|
|
pos: (0, 0)
|
|
size: self.size
|
|
radius: [25, ]
|
|
|
|
MDRelativeLayout
|
|
----------------
|
|
|
|
.. code-block:: kv
|
|
|
|
MDRelativeLayout:
|
|
radius: [25, ]
|
|
md_bg_color: app.theme_cls.primary_color
|
|
"""
|
|
|
|
from kivy.uix.relativelayout import RelativeLayout
|
|
|
|
from kivymd.theming import ThemableBehavior
|
|
from kivymd.uix import MDAdaptiveWidget
|
|
from kivymd.uix.behaviors import DeclarativeBehavior
|
|
|
|
|
|
class MDRelativeLayout(
|
|
DeclarativeBehavior, ThemableBehavior, RelativeLayout, MDAdaptiveWidget
|
|
):
|
|
"""
|
|
Relative layout class. For more information, see in the
|
|
:class:`~kivy.uix.relativelayout.RelativeLayout` class documentation.
|
|
"""
|