react-native-item-list
v1.0.8
Published
The React Native ListItem package is a versatile, easy-to-use solution for creating interactive item lists in your React Native applications. Designed to simplify the process of creating and displaying item lists, this package offers maximum flexibility w
Downloads
19
Maintainers
Readme
react-native-item-list
A simple React Native component for displaying list-item in your projects.
Installation
npm install react-native-list-item
Usage
Import the Card component into the part where you want to use it.
Example :
import React from 'react';
import { View } from 'react-native';
import ListItem from 'react-native-list-item';
const App = () => {
return (
<View>
<ListItem
image={'https://placehold.co/500x500/png'}
title={"First Item"}
icon={require('./src/ListItem/icons/menu.png')}
/>
</View>
);
};
export default App;
Customization
If you want to pass an image or icon with the url, don't specify the uri, use it as in the example above