Gathering detailed insights and metrics for obit-animated-splash-screen
Gathering detailed insights and metrics for obit-animated-splash-screen
Gathering detailed insights and metrics for obit-animated-splash-screen
Gathering detailed insights and metrics for obit-animated-splash-screen
Animated splash screen component for React Native project.
npm install obit-animated-splash-screen
Typescript
Module System
Node Version
NPM Version
JavaScript (58.38%)
Objective-C (17.07%)
Ruby (11.35%)
Java (10.73%)
Starlark (2.47%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
334 Stars
31 Commits
24 Forks
5 Watchers
21 Branches
4 Contributors
Updated on Jul 11, 2025
Latest Version
2.0.5
Package Id
obit-animated-splash-screen@2.0.5
Unpacked Size
0.95 MB
Size
376.52 kB
File Count
72
NPM Version
8.15.0
Node Version
16.17.0
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
1
1
Animated splash screen for Android and iOS. It is based on Implementing Twitter’s App Loading Animation in React Native topic from RN. This use an Image instead of MaskedView to work on both platforms.
SplashAnimated example app.
yarn add react-native-animated-splash-screen
or
npm install --save react-native-animated-splash-screen
1import AnimatedSplash from "react-native-animated-splash-screen"; 2 3render() { 4 return ( 5 <AnimatedSplash 6 translucent={true} 7 isLoaded={this.state.isLoaded} 8 logoImage={require("./assets/logo.png")} 9 backgroundColor={"#262626"} 10 logoHeight={150} 11 logoWidth={150} 12 > 13 <App /> 14 </AnimatedSplash> 15 ); 16 }
Name | Description | Type | Required | Default Value |
---|---|---|---|---|
isLoaded | Condition to show children component and finish the animation. | Boolean | ✓ | false |
backgroundColor | Splash screen background color. | String | '#f00' | |
logoImage | Splash screen logo image. | Object | null | |
logoWidth | Logo image width in px . | Number | 150 | |
logoHeight | Logo image height in px . | Number | 150 | |
children | Children to render inside this component. | Node | null | |
preload | Condition to load children component while wait isLoaded prop be True. | Boolean | true | |
disableBackgroundImage | Disable the background image | Boolean | false | |
translucent | When translucent is set to true, the app will draw under the status bar. Example: here! | Boolean | false | |
customComponent | Add a logo component instead of a logo image. | React Component | null |
1const AppNavigator = createStackNavigator( 2 { 3 home: { 4 screen: HomeScreen, 5 navigationOptions: { 6 header: null, 7 }, 8 }, 9 dashboard: { 10 screen: DashboardScreen, 11 navigationOptions: { 12 title: "Dashboard", 13 }, 14 }, 15 }, 16 { 17 initialRouteName: "home", 18 } 19) 20 21const Container = createAppContainer(AppNavigator) 22 23class App extends React.Component { 24 state = { 25 isLoaded: false, 26 } 27 28 async componentDidMount() { 29 await loadAsync() 30 this.setState({ isLoaded: true }) 31 } 32 33 render() { 34 return ( 35 <AnimatedSplash 36 translucent={true} 37 isLoaded={this.state.isLoaded} 38 logoImage={require("./assets/logo.png")} 39 backgroundColor={"#262626"} 40 logoHeight={150} 41 logoWidth={150} 42 > 43 <Container /> 44 </AnimatedSplash> 45 ) 46 } 47} 48 49export default App
1const AppNavigator = createSwitchNavigator( 2 { 3 home: { 4 screen: props => ( 5 <HomeScreen {...props} setAppLoaded={props.screenProps.setAppLoaded} /> 6 ), 7 }, 8 dashboard: { screen: DashboardScreen }, 9 }, 10 { 11 initialRouteName: "home", 12 } 13) 14 15const Container = createAppContainer(AppNavigator) 16 17class App extends React.Component { 18 state = { 19 isLoaded: false, 20 } 21 22 setAppLoaded = () => { 23 this.setState({ isLoaded: true }) 24 } 25 26 render() { 27 return ( 28 <AnimatedSplash 29 translucent={true} 30 isLoaded={this.state.isLoaded} 31 logoImage={require("./assets/logo.png")} 32 backgroundColor={"#262626"} 33 logoHeight={150} 34 logoWidth={150} 35 > 36 <Container screenProps={{ setAppLoaded: this.setAppLoaded }} /> 37 </AnimatedSplash> 38 ) 39 } 40} 41 42export default App
1class HomeScreen extends React.Component { 2 3... 4 5 async componentDidMount() { 6 await loadAsync(); 7 this.props.setAppLoaded(); 8 } 9 10... 11 12} 13 14export default HomeScreen
MIT
No vulnerabilities found.
Reason
license file detected
Details
Reason
binaries present in source code
Details
Reason
Found 3/13 approved changesets -- score normalized to 2
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
55 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-07-07
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More