Skip to content

Commit c828b3a

Browse files
authored
Merge pull request kivy#2014 from adityabhawsingka/patch-1
Documentation: android hide loading screen
2 parents 0d20e2a + 1a079d6 commit c828b3a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

doc/source/apis.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -88,11 +88,11 @@ longer than necessary (with your app already being loaded) due to a
8888
limitation with the way we check if the app has properly started.
8989
In this case, the splash screen overlaps the app gui for a short time.
9090

91-
To dismiss the loading screen explicitely in your code, use the `android`
91+
To dismiss the loading screen explicitly in your code, use the `android`
9292
module::
9393

94-
from android import hide_loading_screen
95-
hide_loading_screen()
94+
from android import loadingscreen
95+
loadingscreen.hide_loading_screen()
9696

9797
You can call it e.g. using ``kivy.clock.Clock.schedule_once`` to run it
9898
in the first active frame of your app, or use the app build method.

0 commit comments

Comments
 (0)