11 lines
232 B
Python
Executable file
11 lines
232 B
Python
Executable file
__all__ = ("toast",)
|
|
|
|
from kivy.utils import platform
|
|
|
|
if platform == "android":
|
|
try:
|
|
from .androidtoast import toast
|
|
except BaseException:
|
|
from .kivytoast import toast
|
|
else:
|
|
from .kivytoast import toast
|