├── .eslintrc.json ├── .github └── workflows │ └── main.yml ├── .gitignore ├── .prettierrc.js ├── CHANGELOG.md ├── LICENSE ├── README.md ├── Recipes.md ├── exampleapp ├── .buckconfig ├── .editorconfig ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .prettierrc.js ├── .watchmanconfig ├── App.js ├── AppFunctional.tsx ├── AppWithTypes.tsx ├── __tests__ │ ├── App.js │ └── __snapshots__ │ │ └── App.js.snap ├── app.json ├── babel.config.js ├── index.js ├── metro.config.js ├── package-lock.json ├── package.json └── z.jpg ├── index.d.ts ├── index.js ├── lib ├── .vscode │ ├── launch.json │ └── settings.json ├── components │ ├── ItemIcon.js │ ├── RowItem.js │ ├── RowSubItem.js │ └── index.js ├── helpers.js └── sectioned-multi-select.js ├── package.json └── previews ├── example_recording-1.gif ├── example_recording-2.gif ├── example_recording-3.gif └── example_recording-4.gif /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renrizzolo/react-native-sectioned-multi-select/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renrizzolo/react-native-sectioned-multi-select/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renrizzolo/react-native-sectioned-multi-select/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renrizzolo/react-native-sectioned-multi-select/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renrizzolo/react-native-sectioned-multi-select/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renrizzolo/react-native-sectioned-multi-select/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renrizzolo/react-native-sectioned-multi-select/HEAD/README.md -------------------------------------------------------------------------------- /Recipes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renrizzolo/react-native-sectioned-multi-select/HEAD/Recipes.md -------------------------------------------------------------------------------- /exampleapp/.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renrizzolo/react-native-sectioned-multi-select/HEAD/exampleapp/.buckconfig -------------------------------------------------------------------------------- /exampleapp/.editorconfig: -------------------------------------------------------------------------------- 1 | # Windows files 2 | [*.bat] 3 | end_of_line = crlf 4 | -------------------------------------------------------------------------------- /exampleapp/.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renrizzolo/react-native-sectioned-multi-select/HEAD/exampleapp/.flowconfig -------------------------------------------------------------------------------- /exampleapp/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renrizzolo/react-native-sectioned-multi-select/HEAD/exampleapp/.gitattributes -------------------------------------------------------------------------------- /exampleapp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renrizzolo/react-native-sectioned-multi-select/HEAD/exampleapp/.gitignore -------------------------------------------------------------------------------- /exampleapp/.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renrizzolo/react-native-sectioned-multi-select/HEAD/exampleapp/.prettierrc.js -------------------------------------------------------------------------------- /exampleapp/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /exampleapp/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renrizzolo/react-native-sectioned-multi-select/HEAD/exampleapp/App.js -------------------------------------------------------------------------------- /exampleapp/AppFunctional.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renrizzolo/react-native-sectioned-multi-select/HEAD/exampleapp/AppFunctional.tsx -------------------------------------------------------------------------------- /exampleapp/AppWithTypes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renrizzolo/react-native-sectioned-multi-select/HEAD/exampleapp/AppWithTypes.tsx -------------------------------------------------------------------------------- /exampleapp/__tests__/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renrizzolo/react-native-sectioned-multi-select/HEAD/exampleapp/__tests__/App.js -------------------------------------------------------------------------------- /exampleapp/__tests__/__snapshots__/App.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renrizzolo/react-native-sectioned-multi-select/HEAD/exampleapp/__tests__/__snapshots__/App.js.snap -------------------------------------------------------------------------------- /exampleapp/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renrizzolo/react-native-sectioned-multi-select/HEAD/exampleapp/app.json -------------------------------------------------------------------------------- /exampleapp/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renrizzolo/react-native-sectioned-multi-select/HEAD/exampleapp/babel.config.js -------------------------------------------------------------------------------- /exampleapp/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renrizzolo/react-native-sectioned-multi-select/HEAD/exampleapp/index.js -------------------------------------------------------------------------------- /exampleapp/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renrizzolo/react-native-sectioned-multi-select/HEAD/exampleapp/metro.config.js -------------------------------------------------------------------------------- /exampleapp/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renrizzolo/react-native-sectioned-multi-select/HEAD/exampleapp/package-lock.json -------------------------------------------------------------------------------- /exampleapp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renrizzolo/react-native-sectioned-multi-select/HEAD/exampleapp/package.json -------------------------------------------------------------------------------- /exampleapp/z.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renrizzolo/react-native-sectioned-multi-select/HEAD/exampleapp/z.jpg -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renrizzolo/react-native-sectioned-multi-select/HEAD/index.d.ts -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renrizzolo/react-native-sectioned-multi-select/HEAD/index.js -------------------------------------------------------------------------------- /lib/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renrizzolo/react-native-sectioned-multi-select/HEAD/lib/.vscode/launch.json -------------------------------------------------------------------------------- /lib/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /lib/components/ItemIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renrizzolo/react-native-sectioned-multi-select/HEAD/lib/components/ItemIcon.js -------------------------------------------------------------------------------- /lib/components/RowItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renrizzolo/react-native-sectioned-multi-select/HEAD/lib/components/RowItem.js -------------------------------------------------------------------------------- /lib/components/RowSubItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renrizzolo/react-native-sectioned-multi-select/HEAD/lib/components/RowSubItem.js -------------------------------------------------------------------------------- /lib/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renrizzolo/react-native-sectioned-multi-select/HEAD/lib/components/index.js -------------------------------------------------------------------------------- /lib/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renrizzolo/react-native-sectioned-multi-select/HEAD/lib/helpers.js -------------------------------------------------------------------------------- /lib/sectioned-multi-select.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renrizzolo/react-native-sectioned-multi-select/HEAD/lib/sectioned-multi-select.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renrizzolo/react-native-sectioned-multi-select/HEAD/package.json -------------------------------------------------------------------------------- /previews/example_recording-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renrizzolo/react-native-sectioned-multi-select/HEAD/previews/example_recording-1.gif -------------------------------------------------------------------------------- /previews/example_recording-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renrizzolo/react-native-sectioned-multi-select/HEAD/previews/example_recording-2.gif -------------------------------------------------------------------------------- /previews/example_recording-3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renrizzolo/react-native-sectioned-multi-select/HEAD/previews/example_recording-3.gif -------------------------------------------------------------------------------- /previews/example_recording-4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renrizzolo/react-native-sectioned-multi-select/HEAD/previews/example_recording-4.gif --------------------------------------------------------------------------------