# react-native-sudoku-grid

> grid of sudoku style(or box style) for react native

Latest version **1.0.7** (published 2015-11-13) · MIT license · 0 weekly downloads

## Install

```sh
npm install react-native-sudoku-grid
pnpm add react-native-sudoku-grid
yarn add react-native-sudoku-grid
bun add react-native-sudoku-grid
```

## Health

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

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.7 |
| Published | 2015-11-13 |
| First published | 2015-11-08 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 7 |
| Author | zoudeyi |
| Maintainers | zackleo |
| Keywords | react-component, react-native, ios, android, sudoku, grid, box-style, nine-box |

## Links

- npm: https://www.npmjs.com/package/react-native-sudoku-grid
- Repository: https://ZackLeonardo@github.com/ZackLeonardo/react-native-sudokuGrid
- Homepage: https://github.com/ZackLeonardo/react-native-sudokuGrid#readme
- Issues: https://github.com/ZackLeonardo/react-native-sudokuGrid/issues
- npm.io page: https://npm.io/package/react-native-sudoku-grid

## Alternatives

- [@lexical/table](https://npm.io/package/@lexical/table.md) — 3.0M weekly downloads
- [mantine-datatable](https://npm.io/package/mantine-datatable.md) — 98.2K weekly downloads
- [react-native-collapsible-tab-view](https://npm.io/package/react-native-collapsible-tab-view.md) — 70.6K weekly downloads
- [@handsontable/vue3](https://npm.io/package/@handsontable/vue3.md) — 16.1K weekly downloads
- [vuewordcloud](https://npm.io/package/vuewordcloud.md) — 7.2K weekly downloads

## Recent versions

- 1.0.7 (latest) — 2015-11-13
- 1.0.6 — 2015-11-08
- 1.0.5 — 2015-11-08
- 1.0.3 — 2015-11-08
- 1.0.2 — 2015-11-08
- 1.0.1 — 2015-11-08
- 1.0.0 — 2015-11-08

## README

# react-native-sudokuGrid
react native sudoku grid layout

## Installation

```
npm install --save react-native-sudoku-grid
```

**This module requires React Native 0.11 or later**

## Usage

example: see github Example.
https://github.com/ZackLeonardo/react-native-sudokuGrid/tree/master/Example

```js
var SudokuGrid = require('sudokuGrid');
//example
var s = require('./styles');
var roleData = require('./roles.json');
var roleInfo = require('./roleInfo');

var roleSudokuGrid = React.createClass({
  render: function() {
    return (
        <SudokuGrid
          data={roleData.items}
          info={roleInfo}
          navigator={this.props.navigator}
        />
    );
  },
});
```

### Navigator setup/Android support

For android support you must pass a reference to a `Navigator` since it does not yet have the `Modal` component and is not on the official todo list. See the `Example` project for a complete example.

```
var roleSudokuApp = React.createClass({
  render: function() {
    return (
      <NavigatorIOS
        style={styles.navigator}
        initialRoute={{
          title: 'roles',
          component: roleSudokuGrid,
        }}
      />
    );
  }
});
```

## Demo

![Demo](https://raw.githubusercontent.com/ZackLeonardo/react-native-sudokuGrid/master/screenShot1.png)
![Demo](https://raw.githubusercontent.com/ZackLeonardo/react-native-sudokuGrid/master/screenShot2.png)

## Example

Check full example in the `Example` folder.

## License

[MIT License](http://opensource.org/licenses/mit-license.html). © Zou Deyi

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