# rezg-react-native-multiple-checkbox

> multiple checkbox selections

Latest version **0.1.13** (published 2023-08-02) · MIT license · 0 weekly downloads

## Install

```sh
npm install rezg-react-native-multiple-checkbox
pnpm add rezg-react-native-multiple-checkbox
yarn add rezg-react-native-multiple-checkbox
bun add rezg-react-native-multiple-checkbox
```

## Health

**Score 30/100 (F)** — status: abandoned.

Positive: has types; esm support; no vulnerabilities; high quality score.

Warnings: low downloads; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.1.13 |
| Published | 2023-08-02 |
| First published | 2023-08-01 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | bundled |
| Module format | ESM + CommonJS |
| Node | >= 16.0.0 |
| Dependencies | 5 |
| Unpacked size | 48 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | Dilmi Dilshara |
| Maintainers | dilmi |
| Keywords | react-native, ios, android |

## Links

- npm: https://www.npmjs.com/package/rezg-react-native-multiple-checkbox
- Repository: http://gitlab.rezgcorp.com/rezgmarketplacecommon/rezg-react-native-multiple-checkbox
- Homepage: http://gitlab.rezgcorp.com/rezgmarketplacecommon/rezg-react-native-multiple-checkbox#readme
- Issues: http://gitlab.rezgcorp.com/rezgmarketplacecommon/rezg-react-native-multiple-checkbox/issues
- npm.io page: https://npm.io/package/rezg-react-native-multiple-checkbox

## Dependencies (5)

- [expo-cli](https://npm.io/package/expo-cli.md) ^6.3.10
- [react-dom](https://npm.io/package/react-dom.md) ^18.2.0
- [react-native-web](https://npm.io/package/react-native-web.md) ~0.18.11
- [react-native-elements](https://npm.io/package/react-native-elements.md) ^3.4.3
- [react-native-vector-icons](https://npm.io/package/react-native-vector-icons.md) ^10.0.0

## Alternatives

- [@sindresorhus/slugify](https://npm.io/package/@sindresorhus/slugify.md) — 3.7M weekly downloads
- [solid-js](https://npm.io/package/solid-js.md) — 2.7M weekly downloads
- [expo-glass-effect](https://npm.io/package/expo-glass-effect.md) — 2.5M weekly downloads
- [nanoassert](https://npm.io/package/nanoassert.md) — 780.8K weekly downloads
- [@ffmpeg/ffmpeg](https://npm.io/package/@ffmpeg/ffmpeg.md) — 529.5K weekly downloads

## Recent versions

- 0.1.13 (latest) — 2023-08-02
- 0.1.12 — 2023-08-02
- 0.1.11 — 2023-08-01
- 0.1.10 — 2023-08-01
- 0.1.9 — 2023-08-01
- 0.1.8 — 2023-08-01
- 0.1.7 — 2023-08-01
- 0.1.6 — 2023-08-01
- 0.1.5 — 2023-08-01
- 0.1.4 — 2023-08-01
- 0.1.3 — 2023-08-01
- 0.1.2 — 2023-08-01
- 0.1.1 — 2023-08-01
- 0.1.0 — 2023-08-01

## README

# rezg-react-native-multiple-checkbox

multiple checkbox selections

## Installation

```sh
npm install rezg-react-native-multiple-checkbox
```

## Usage

```js
import { MultipleCheckBoxSelection } from 'rezg-react-native-multiple-checkbox';


import * as React from "react";
import dummyInputs from "./ItemList/ItemList";
import { StyleSheet, View } from "react-native";
import MultipleCheckBoxSelection from "rezg-react-native-multiple-checkbox";

export default function App() {
  return (
    <View style={styles.container}>
      <MultipleCheckBoxSelection
        CardTittle="Amenities"
        CardTagLine="Available Amenities"
        checkedCardColor={"#FEECB5"}
        checkboxStyle={{ backgroundColor: "transparent" }}
        checkboxCheckedStyle={{ backgroundColor: "white" }}
        itemList={dummyInputs}
        viewType="list" //list || grid
      />
    </View>
  );
}

const styles = StyleSheet.create({
  container: {
    flex: 1,
    alignItems: "center",
    justifyContent: "center",
  },
  box: {
    width: 60,
    height: 60,
    marginVertical: 20,
  },
});

// ...

 
```

## Contributing

See the [contributing guide](CONTRIBUTING.md) to learn how to contribute to the repository and the development workflow.

## License

MIT

---

Made with [create-react-native-library](https://github.com/callstack/react-native-builder-bob)

---
_Source: https://npm.io/package/rezg-react-native-multiple-checkbox · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
