react-native-list-native-ui
TypeScript icon, indicating that this package has built-in type declarations

1.0.3 • Public • Published

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

Simulator Screenshot - iPhone 14 - 2023-07-19 at 18 16 23

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

Package Sidebar

Install

npm i react-native-list-native-ui

Weekly Downloads

2

Version

1.0.3

License

MIT

Unpacked Size

67.2 MB

Total Files

35

Last publish

Collaborators

  • talkwondo