
Security News
Open Source CAI Framework Handles Pen Testing Tasks up to 3,600× Faster Than Humans
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
react-native-dashboard
Advanced tools
import React, { Component } from 'react';
import { Text, View, StyleSheet } from 'react-native';
import Dashboard from 'react-native-dashboard';
import { FontAwesome } from 'react-native-vector-icons';
const Icon = ({ icon, item, background }) => (
<FontAwesome
name={icon}
size={40}
color={
item.iconColor || (!item.background || !background ? '#3498db' : '#fff')
}
style={item.styleIcon}
/>
);
const data = [
{
name: 'Me',
background: '#3498db',
icon: (item, background) => Icon({ icon: 'user', item, background }),
iconColor: '#0d47a1',
rippleColor: '#000',
},
{
name: 'Family',
background: '#b71c1c',
icon: (item, background) => Icon({ icon: 'gratipay', item, background }),
styleIcon: { color: '#0d47a1' },
},
{
name: 'Lovely',
background: '#ffeb3b',
icon: (item, background) => Icon({ icon: 'heart', item, background }),
},
{
name: 'Team',
background: '#4caf50',
icon: (item, background) => Icon({ icon: 'users', item, background }),
styleName: { color: '#0d47a1', fontWeight: 'bold' },
},
{
name: 'Friends',
nameColor: '#3498db',
background: '#02cbef',
icon: (item, background) => Icon({ icon: 'group', item, background }),
},
{
name: 'Calendars',
background: '#ff5722',
icon: (item, background) => Icon({ icon: 'calendar', item, background }),
},
];
export default function App() {
const card = ({ name }) => console.log('Card: ' + name);
return (
<View style={styles.container}>
<Dashboard
data={data}
background={true}
card={card}
column={2}
rippleColor={'#3498db'}
/>
</View>
);
}
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: '#ecf0f1',
},
});
Prop | Type | Default | Note |
---|---|---|---|
data | array | We need to pass an array, as in the example. | |
background | bool | false | It allows to choose whether to use the value of the background that is in the array. |
card | function | Function that lets you know which card has been selected. | |
column | number | 2 | Number of cards per line. |
rippleColor | string | #fff | Ripple color, does not work on the web version. |
array
Prop | Type | Default | Note |
---|---|---|---|
background | string | #fff | Background card. |
name | string | Name card. | |
nameColor | string | #000 | Name color. |
styleName | obj | {} | Name style. |
icon | function(item, background) | ||
iconColor | string | #3498db | Icon color. |
styleIcon | obj | {} | Icon style. |
rippleColor | string | #fff | Ripple color, does not work on the web version. |
This library is provided under the Apache License.
FAQs
React Native library to generate a dashboard.
The npm package react-native-dashboard receives a total of 17 weekly downloads. As such, react-native-dashboard popularity was classified as not popular.
We found that react-native-dashboard 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
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
Security News
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.
Security News
CVEForecast.org uses machine learning to project a record-breaking surge in vulnerability disclosures in 2025.