first commit
This commit is contained in:
commit
417e54da96
5696 changed files with 900003 additions and 0 deletions
|
@ -0,0 +1 @@
|
|||
from .rotatewidget import RotateWidget
|
Binary file not shown.
Binary file not shown.
|
@ -0,0 +1,32 @@
|
|||
"""
|
||||
Templates/RotateWidget
|
||||
======================
|
||||
|
||||
.. deprecated:: 1.0.0
|
||||
|
||||
.. note:: `RotateWidget` class has been deprecated. Please use
|
||||
`RotateBahavior <https://kivymd.readthedocs.io/en/latest/behaviors/rotate/>`_
|
||||
class instead.
|
||||
"""
|
||||
|
||||
__all__ = ("RotateWidget",)
|
||||
|
||||
from kivy import Logger
|
||||
|
||||
from kivymd.uix.behaviors import RotateBehavior
|
||||
|
||||
|
||||
class RotateWidget(RotateBehavior):
|
||||
"""
|
||||
.. deprecated:: 1.1.0
|
||||
Use :class:`~kivymd.uix.behaviors.rotate_behavior.RotateBehavior`
|
||||
class instead.
|
||||
"""
|
||||
|
||||
def __init__(self, **kwargs):
|
||||
super().__init__(**kwargs)
|
||||
Logger.warning(
|
||||
"KivyMD: "
|
||||
"The `RotateWidget` class has been deprecated. "
|
||||
"Use the `RotateBehavior` class instead."
|
||||
)
|
Loading…
Add table
Add a link
Reference in a new issue