
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.
react-native-flatboard
Advanced tools
A Flatlist based onboarding screen for React Native
Using npm
npm i react-native-flatboard
Using Yarn
yarn add react-native-flatboard
Note In case of error on first run, try restarting the metro server.
import {View} from 'react-native';
import FlatBoard from 'react-native-flatboard';
export default function App() {
const handleFinish = () => {
console.log('Onboarding Completed');
};
const data = [];
return (
<View style={{flex: 1}}>
<FlatBoard
variant="standard"
data={data}
onFinish={handleFinish}
accentColor="#93c01f"
backgroundColor="#ecfccb"
buttonTitle="Lets Go"
hideIndicator
headingStyles={{
fontSize: 24,
color: '#93c01f',
textAlign: 'center',
}}
/>
</View>
);
}
const data = [
{
id: 1,
title: 'Screen One',
description: 'Description One',
icon: require('image-path.jpg'),
},
{
id: 2,
title: 'Screen Two',
description: 'Description Two',
icon: require('image-path.jpg'),
},
];
| Name | Type | Required | Default | Description |
|---|---|---|---|---|
| data | array | true | Empty Array | Array of data for each slide to be rendered. |
| onFinish | function | true | none | Function to call on tour end. |
| variant | string | false | standard | Flatboard theme, supports 'standard' & 'modern'. |
| accentColor | string | false | #93c01f | Accent color for selected theme. |
| backgroundColor | string | false | #ffffff | Background color for Flatboard screens. |
| buttonTitle | array | false | Get Started | Title for primary/finish button. |
| hideIndicator | boolean | false | false | Hide the step indicator. |
| headingStyles | StyleSheet | false | default styles | Custom text styles for heading |
| descriptionStyles | StyleSheet | false | default styles | Custom text styles for description |
Please note, the package is still in development and more features are being added regularly.
FAQs
A Flatlist based onboarding screen for React Native
The npm package react-native-flatboard receives a total of 12 weekly downloads. As such, react-native-flatboard popularity was classified as not popular.
We found that react-native-flatboard 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.