1.0.3 • Published 10 months ago

react-native-list-native-ui v1.0.3

Weekly downloads
-
License
MIT
Repository
github
Last release
10 months ago

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

1.0.3

10 months ago

1.0.2

10 months ago

1.0.0

10 months ago