mirror of
https://github.com/liberatedsystems/Sideband_CE.git
synced 2024-09-03 04:13:27 +02:00
51 lines
1012 B
Python
51 lines
1012 B
Python
"""
|
|
Components/Widget
|
|
=================
|
|
|
|
:class:`~kivy.uix.widget.Widget` class equivalent. Simplifies working
|
|
with some widget properties. For example:
|
|
|
|
Widget
|
|
------
|
|
|
|
.. code-block:: kv
|
|
|
|
Widget:
|
|
size_hint: .5, None
|
|
height: self.width
|
|
|
|
canvas:
|
|
Color:
|
|
rgba: app.theme_cls.primary_color
|
|
RoundedRectangle:
|
|
pos: self.pos
|
|
size: self.size
|
|
radius: [self.height / 2,]
|
|
|
|
MDWidget
|
|
--------
|
|
|
|
.. code-block:: kv
|
|
|
|
MDWidget:
|
|
size_hint: .5, None
|
|
height: self.width
|
|
radius: self.height / 2
|
|
md_bg_color: app.theme_cls.primary_color
|
|
"""
|
|
|
|
__all__ = ("MDWidget",)
|
|
|
|
from kivy.uix.widget import Widget
|
|
|
|
from kivymd.uix import MDAdaptiveWidget
|
|
from kivymd.uix.behaviors import DeclarativeBehavior
|
|
|
|
|
|
class MDWidget(DeclarativeBehavior, MDAdaptiveWidget, Widget):
|
|
"""
|
|
See :class:`~kivy.uix.Widget` class documentation for more information.
|
|
|
|
.. versionadded:: 1.0.0
|
|
"""
|