12 lines
232 B
Python
12 lines
232 B
Python
|
__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
|