We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 0d20e2a + 1a079d6 commit c828b3aCopy full SHA for c828b3a
doc/source/apis.rst
@@ -88,11 +88,11 @@ longer than necessary (with your app already being loaded) due to a
88
limitation with the way we check if the app has properly started.
89
In this case, the splash screen overlaps the app gui for a short time.
90
91
-To dismiss the loading screen explicitely in your code, use the `android`
+To dismiss the loading screen explicitly in your code, use the `android`
92
module::
93
94
- from android import hide_loading_screen
95
- hide_loading_screen()
+ from android import loadingscreen
+ loadingscreen.hide_loading_screen()
96
97
You can call it e.g. using ``kivy.clock.Clock.schedule_once`` to run it
98
in the first active frame of your app, or use the app build method.
0 commit comments