From 37c988ceea33fc544df9e7fc4d287a8509d451b2 Mon Sep 17 00:00:00 2001 From: Brook Mezgebu Date: Mon, 28 Mar 2022 22:22:21 +0300 Subject: [PATCH] fix: correct method signature on the example --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9eb674f9..d82e9d4f 100644 --- a/README.md +++ b/README.md @@ -245,7 +245,7 @@ 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, false /* fullscreen */); ``` ### iOS