react-native-paging-categories
v0.1.4
Published
test
Downloads
2
Maintainers
Readme
react-native-paging-categories
list item panging
Installation
npm install react-native-paging-categories
yarn add react-native-paging-categories
Usage
import PagingListView from "../../src/PagingListView";
export default function App() {
return (
<View style={styles.container}>
<PagingListView data={[
{
name: 'test',
},
{
name: 'test',
},
{
name: 'test',
},
{
name: 'test',
},
{
name: 'test',
},
{
name: 'test',
},
{
name: 'test',
},
]} numColumns={2}/>
</View>
);
}
const styles = StyleSheet.create({
container: {
flex: 1,
alignItems: 'center',
justifyContent: 'center',
},
});
Contributing
See the contributing guide to learn how to contribute to the repository and the development workflow.
License
MIT
Made with create-react-native-library