mirror of
https://github.com/markqvist/Sideband.git
synced 2025-07-25 15:55:38 -04:00
11 lines
238 B
Python
Executable file
11 lines
238 B
Python
Executable file
__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
|