mirror of
https://github.com/markqvist/Sideband.git
synced 2024-10-01 03:15:37 -04:00
12 lines
238 B
Python
12 lines
238 B
Python
|
__all__ = ("toast",)
|
||
|
|
||
|
from kivy.utils import platform
|
||
|
|
||
|
if platform == "android":
|
||
|
try:
|
||
|
from .androidtoast import toast
|
||
|
except ModuleNotFoundError:
|
||
|
from .kivytoast import toast
|
||
|
else:
|
||
|
from .kivytoast import toast
|