
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
rnkit-splash-screen
Advanced tools
splashscreen for React Native.
First, cd to your RN project directory, and install RNMK through rnpm . If you don't have rnpm, you can install RNMK from npm with the command npm i -S rnkit-splash-screen and link it manually (see below).
rnpm install rnkit-splash-screen@1.0.3
$npm install -S rnkit-splash-screen
$react-native link rnkit-splash-screen
node_modules/rnkit-splash-screen/ios/RNKitSplashScreen.xcodeproj to your xcode project, usually under the Libraries grouplibRNKitSplashScreen.a (from Products under RNKitSplashScreen.xcodeproj) to build target's Linked Frameworks and Libraries list$(PROJECT_DIR)/Frameworks.rnpm install rnkit-splash-screen@1.0.3
$npm install -S rnkit-splash-screen
$react-native link rnkit-splash-screen
android/settings.gradle:include ':rnkit-splash-screen'
project(':rnkit-splash-screen').projectDir = new File(rootProject.projectDir, '../node_modules/rnkit-splash-screen/android/app')
android/app/build.gradledependencies {
...
compile project(':rnkit-splash-screen')
}
import io.rnkit.splashscreen.SplashScreenPackage; and register it in your MainActivity (or equivalent, RN >= 0.32 MainApplication.java):@Override
protected List<ReactPackage> getPackages() {
return Arrays.asList(
new MainReactPackage(),
new SplashScreenPackage(MainActivity.activity, true)
);
}
Finally, you're good to go, feel free to require rnkit-splash-screen in your JS files.
Have fun! :metal:
Import library
import RNKitSplashScreenManager from 'rnkit-splash-screen'
RNKitSplashScreenManager.tipText('text')
progress 0.0 .. 1.0, default is 0.0. values outside are pinned.
RNKitSplashScreenManager.progress(progress)
RNKitSplashScreenManager.open()
RNKitSplashScreenManager.close({animationType: RNKitSplashScreenManager.animationType.scale, duration: 850, delay: 500})
@cyqresig - react-native-smart-splash-screen
Feel free to contact me or create an issue
made with ♥
FAQs
splashscreen for react-native
We found that rnkit-splash-screen demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.