mirror of
https://github.com/liberatedsystems/Sideband_CE.git
synced 2024-09-03 04:13:27 +02:00
20 lines
430 B
Python
20 lines
430 B
Python
|
"""
|
||
|
FitImage
|
||
|
========
|
||
|
|
||
|
.. note:: See :class:`~kivymd.uix.fitimage.FitImage` for more information
|
||
|
"""
|
||
|
|
||
|
__all__ = ("FitImage",)
|
||
|
|
||
|
from kivy import Logger
|
||
|
|
||
|
from kivymd.uix.fitimage import FitImage
|
||
|
|
||
|
Logger.warning(
|
||
|
"FitImage: Note!"
|
||
|
"\nIn the near future the `FitImage` widget will be moved to the "
|
||
|
"`kivymd.uix.fitimage` package.\nUse import of this widget like this:"
|
||
|
"`from kivymd.uix.fitimage import FitImage`."
|
||
|
)
|