react-native-list-native-ui
v1.0.3
Published
Create Native ui list in your react-native app
Downloads
4
Maintainers
Readme
react-native-list
Create Native ui list in your react-native app
Installation
npm install react-native-list-native-ui
cd ios && pod install
Usage
import { ListView } from 'react-native-list';
// ...
const listObject = [
{ icon: 'lock', name: 'Password', navigate: 'PasswordScreen' },
{ icon: 'barcode', name: 'Scan', navigate: 'ScanScreen' },
];
// ...
<ListView
width={width}
height={height}
listObject={listObject}
colorText="FFA500"
onNavigate={({ nativeEvent }) => {
navigation.navigate(nativeEvent.screen);
}}
colorIcon="FFA500"
sectionButtom="configure your account list"
sectionHeader="Account list"
colorChevron="FFA500"
/>;
Visualization
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