Render toast component in-application on all platforms

This commit is contained in:
Mark Qvist
2025-11-22 10:28:42 +01:00
parent 75e6fd05e8
commit 6edc6e3771

View File

@@ -2,10 +2,14 @@ __all__ = ("toast",)
from kivy.utils import platform
use_native_toast = False
if platform == "android":
try:
from .androidtoast import toast
except ModuleNotFoundError:
if use_native_toast:
try: from .androidtoast import toast
except ModuleNotFoundError: from .kivytoast import toast
else:
from .kivytoast import toast
else:
from .kivytoast import toast