-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
SplashScreen.show() is not a function #6
Comments
Yes, but you can use it in the following way: Android
iOS
|
I would like to on app resume, show SplashScreen again until contents are loaded. Is that possible? I'm detecting app resume in React Native Javascript |
Can you export the show method, and then send a pull request? |
public class MainActivity extends ReactActivity {
} |
|
I did same. And I can see "react-native-splash-screen" in node_modules of my project. Can you please notice that imports in my AppDelegate are like "#import <React/RCTRootView.h>" while in SplashScreen example, they are used as "#import "RCTRootView.h" ". Is there any version difference? I've created my project through plain terminal commands and code written in it is the boiler code provided by react native itself. |
@sairasamdanii Are you using v40 of React Native? The iOS native headers have been moved. See also https://github.com/facebook/react-native/releases/tag/v0.40.0 . Quote from that page: "This means that all iOS native libraries need a major version bump for RN 0.40." |
Yeah it appears that the SplashScreen setup is broken after RN 0.40. I'm having the same issues. |
@crazycodeboy show() looks like a function under api but it isn't... |
@siemya |
@crazycodeboy if show() is only a native method, then how can we show the Splash Screen at other times during the app experience? I'm trying to show the splash screen during page transitions, for example. And it doesn't look like I can do this through react-native-splash-screen. |
@crazycodeboy i also want to show the splash screen when i reload the js bundle, thats why i need a show function. İs there any other way to do it? |
hide is undefined |
@siemya @jdmcpeek @JakeRawr @crazycodeboy Any update on this? I'm using this with redux-persist and am having a issue #60 . any way to somehow treat the splash screen as a react component and render it at will? I thought about making a component using the same image as the splash screen, but not sure if aspect ratio and layout would match for devices of diff sizes. |
@sairasamdanii |
#import <SplashScreen.h> works for me |
we do need this feature |
seems like you only exported
hide
method inSplashScreen.m
but notshow
?The text was updated successfully, but these errors were encountered: