
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-tabbedlist
Advanced tools
React Native Scrollable Tabbed List.
npm install react-native-tabbedlist
import { TabbedList } from 'react-native-tabbedlist';
// ...
const DATA: Data[] = [
{
title: 'Section 1',
data: ['Item 1-1', 'Item 1-2', 'Item 1-3'],
},
{
title: 'Section 2',
data: ['Item 2-1', 'Item 2-2', 'Item 2-3'],
}
]
const renderListItem = (item: any) => {
return (
<View style={styles.listItem}>
<Text>{item}</Text>
</View>
);
};
const renderTabItem = ({
item,
isSelected,
}: {
item: any;
isSelected: boolean;
}) => {
return (
<View style={styles.tabItem}>
<Text style={isSelected && styles.selected}>{item.title}</Text>
</View>
);
};
const renderSectionHeader = (section: SectionListData<Data>) => {
return (
<View style={styles.sectionHeader}>
<Text>{section.title}</Text>
</View>
);
};
const listHeader = (
<View style={styles.header}>
<Text>List Header</Text>
</View>
);
return (
<TabbedList
data={DATA}
listHeader={listHeader}
renderListItem={renderListItem}
renderTabItem={renderTabItem}
renderSectionHeader={renderSectionHeader}
/>;
)
See the contributing guide to learn how to contribute to the repository and the development workflow.
MIT
Made with create-react-native-library
FAQs
React Native Scrollable Tabbed List.
We found that react-native-tabbedlist demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 0 open source maintainers 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.