From 8bcd4bfb734499724787af835d54bae9abb0bf19 Mon Sep 17 00:00:00 2001 From: Saamer Mansoor Date: Tue, 1 Feb 2022 11:32:25 -0500 Subject: [PATCH] Update README for SplashScreen.show() * Updated README for the new function definition for show ``` SplashScreen.show(this, R.style.SplashScreenTheme, true); ``` --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 9eb674f9..e6b6d27b 100644 --- a/README.md +++ b/README.md @@ -245,8 +245,9 @@ Create a style definition for this in `android/app/src/main/res/values/styles.xm Change your `show` method to include your custom style: ```java -SplashScreen.show(this, R.style.SplashScreenTheme); +SplashScreen.show(this, R.style.SplashScreenTheme, true); ``` +You can use false instead of true, if you would not like to use full screen mode ### iOS