├── .editorconfig ├── .gitattributes ├── .github ├── FUNDING.yml ├── actions │ └── setup │ │ └── action.yml └── workflows │ ├── ci.yml │ └── vercel-deploy.yml ├── .gitignore ├── .nvmrc ├── .watchmanconfig ├── .yarn ├── plugins │ └── @yarnpkg │ │ ├── plugin-interactive-tools.cjs │ │ └── plugin-workspace-tools.cjs └── releases │ └── yarn-3.6.1.cjs ├── .yarnrc.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── babel.config.js ├── example ├── .gitignore ├── App.js ├── app.json ├── assets │ ├── adaptive-icon.png │ ├── favicon.png │ ├── fonts │ │ └── regular.otf │ ├── icon.png │ ├── images │ │ ├── github-logo.png │ │ └── github-mark.png │ └── splash.png ├── babel.config.js ├── index.tsx ├── metro.config.js ├── package.json ├── path-fs-canvaskit-postinstall.js ├── public │ └── canvaskit.wasm ├── src │ ├── app │ │ ├── +html.tsx │ │ └── index.tsx │ ├── components │ │ ├── config-panel │ │ │ ├── index.tsx │ │ │ ├── selector-section.tsx │ │ │ └── selectors │ │ │ │ ├── base-padding.tsx │ │ │ │ ├── base-shape.tsx │ │ │ │ ├── eye-pattern-padding.tsx │ │ │ │ ├── eye-pattern-shape.tsx │ │ │ │ ├── gradient.tsx │ │ │ │ ├── index.ts │ │ │ │ └── logo.tsx │ │ ├── github-banner │ │ │ └── index.tsx │ │ ├── gradient-option-preview │ │ │ ├── index.tsx │ │ │ ├── types.ts │ │ │ └── utils.tsx │ │ ├── logo-option-preview │ │ │ └── index.tsx │ │ ├── main.tsx │ │ ├── number-option-preview │ │ │ └── index.tsx │ │ ├── pressable-scale │ │ │ └── index.tsx │ │ ├── qrcode-copy-button │ │ │ ├── hooks │ │ │ │ ├── use-active-qrcode-string.tsx │ │ │ │ └── use-copy-qrcode.tsx │ │ │ └── index.tsx │ │ ├── qrcode.tsx │ │ ├── separator │ │ │ └── index.tsx │ │ ├── shape-option-preview │ │ │ ├── index.tsx │ │ │ └── utils.ts │ │ └── touchable-highlight │ │ │ └── index.tsx │ ├── hooks │ │ └── useDimensions.ts │ ├── providers │ │ └── fonts-provider │ │ │ └── index.tsx │ ├── states │ │ ├── index.ts │ │ └── qrcode.ts │ └── utils │ │ └── index.ts ├── tsconfig.json └── webpack.config.js ├── lefthook.yml ├── package.json ├── src ├── __tests__ │ ├── generate-matrix.test.tsx │ └── transform-matrix-into-path.test.ts ├── index.tsx ├── qrcode │ ├── generate-matrix.ts │ └── transform-matrix-into-path.ts └── types.ts ├── tsconfig.build.json ├── tsconfig.json ├── vercel.json └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/react-native-qrcode-skia/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/react-native-qrcode-skia/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/react-native-qrcode-skia/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/actions/setup/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/react-native-qrcode-skia/HEAD/.github/actions/setup/action.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/react-native-qrcode-skia/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/vercel-deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/react-native-qrcode-skia/HEAD/.github/workflows/vercel-deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/react-native-qrcode-skia/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v18 2 | -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /.yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/react-native-qrcode-skia/HEAD/.yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs -------------------------------------------------------------------------------- /.yarn/plugins/@yarnpkg/plugin-workspace-tools.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/react-native-qrcode-skia/HEAD/.yarn/plugins/@yarnpkg/plugin-workspace-tools.cjs -------------------------------------------------------------------------------- /.yarn/releases/yarn-3.6.1.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/react-native-qrcode-skia/HEAD/.yarn/releases/yarn-3.6.1.cjs -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/react-native-qrcode-skia/HEAD/.yarnrc.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/react-native-qrcode-skia/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/react-native-qrcode-skia/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/react-native-qrcode-skia/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/react-native-qrcode-skia/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/react-native-qrcode-skia/HEAD/babel.config.js -------------------------------------------------------------------------------- /example/.gitignore: -------------------------------------------------------------------------------- 1 | .vercel 2 | -------------------------------------------------------------------------------- /example/App.js: -------------------------------------------------------------------------------- 1 | export { default } from './app/index'; 2 | -------------------------------------------------------------------------------- /example/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/react-native-qrcode-skia/HEAD/example/app.json -------------------------------------------------------------------------------- /example/assets/adaptive-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/react-native-qrcode-skia/HEAD/example/assets/adaptive-icon.png -------------------------------------------------------------------------------- /example/assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/react-native-qrcode-skia/HEAD/example/assets/favicon.png -------------------------------------------------------------------------------- /example/assets/fonts/regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/react-native-qrcode-skia/HEAD/example/assets/fonts/regular.otf -------------------------------------------------------------------------------- /example/assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/react-native-qrcode-skia/HEAD/example/assets/icon.png -------------------------------------------------------------------------------- /example/assets/images/github-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/react-native-qrcode-skia/HEAD/example/assets/images/github-logo.png -------------------------------------------------------------------------------- /example/assets/images/github-mark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/react-native-qrcode-skia/HEAD/example/assets/images/github-mark.png -------------------------------------------------------------------------------- /example/assets/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/react-native-qrcode-skia/HEAD/example/assets/splash.png -------------------------------------------------------------------------------- /example/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/react-native-qrcode-skia/HEAD/example/babel.config.js -------------------------------------------------------------------------------- /example/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/react-native-qrcode-skia/HEAD/example/index.tsx -------------------------------------------------------------------------------- /example/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/react-native-qrcode-skia/HEAD/example/metro.config.js -------------------------------------------------------------------------------- /example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/react-native-qrcode-skia/HEAD/example/package.json -------------------------------------------------------------------------------- /example/path-fs-canvaskit-postinstall.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/react-native-qrcode-skia/HEAD/example/path-fs-canvaskit-postinstall.js -------------------------------------------------------------------------------- /example/public/canvaskit.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/react-native-qrcode-skia/HEAD/example/public/canvaskit.wasm -------------------------------------------------------------------------------- /example/src/app/+html.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/react-native-qrcode-skia/HEAD/example/src/app/+html.tsx -------------------------------------------------------------------------------- /example/src/app/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/react-native-qrcode-skia/HEAD/example/src/app/index.tsx -------------------------------------------------------------------------------- /example/src/components/config-panel/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/react-native-qrcode-skia/HEAD/example/src/components/config-panel/index.tsx -------------------------------------------------------------------------------- /example/src/components/config-panel/selector-section.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/react-native-qrcode-skia/HEAD/example/src/components/config-panel/selector-section.tsx -------------------------------------------------------------------------------- /example/src/components/config-panel/selectors/base-padding.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/react-native-qrcode-skia/HEAD/example/src/components/config-panel/selectors/base-padding.tsx -------------------------------------------------------------------------------- /example/src/components/config-panel/selectors/base-shape.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/react-native-qrcode-skia/HEAD/example/src/components/config-panel/selectors/base-shape.tsx -------------------------------------------------------------------------------- /example/src/components/config-panel/selectors/eye-pattern-padding.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/react-native-qrcode-skia/HEAD/example/src/components/config-panel/selectors/eye-pattern-padding.tsx -------------------------------------------------------------------------------- /example/src/components/config-panel/selectors/eye-pattern-shape.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/react-native-qrcode-skia/HEAD/example/src/components/config-panel/selectors/eye-pattern-shape.tsx -------------------------------------------------------------------------------- /example/src/components/config-panel/selectors/gradient.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/react-native-qrcode-skia/HEAD/example/src/components/config-panel/selectors/gradient.tsx -------------------------------------------------------------------------------- /example/src/components/config-panel/selectors/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/react-native-qrcode-skia/HEAD/example/src/components/config-panel/selectors/index.ts -------------------------------------------------------------------------------- /example/src/components/config-panel/selectors/logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/react-native-qrcode-skia/HEAD/example/src/components/config-panel/selectors/logo.tsx -------------------------------------------------------------------------------- /example/src/components/github-banner/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/react-native-qrcode-skia/HEAD/example/src/components/github-banner/index.tsx -------------------------------------------------------------------------------- /example/src/components/gradient-option-preview/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/react-native-qrcode-skia/HEAD/example/src/components/gradient-option-preview/index.tsx -------------------------------------------------------------------------------- /example/src/components/gradient-option-preview/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/react-native-qrcode-skia/HEAD/example/src/components/gradient-option-preview/types.ts -------------------------------------------------------------------------------- /example/src/components/gradient-option-preview/utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/react-native-qrcode-skia/HEAD/example/src/components/gradient-option-preview/utils.tsx -------------------------------------------------------------------------------- /example/src/components/logo-option-preview/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/react-native-qrcode-skia/HEAD/example/src/components/logo-option-preview/index.tsx -------------------------------------------------------------------------------- /example/src/components/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/react-native-qrcode-skia/HEAD/example/src/components/main.tsx -------------------------------------------------------------------------------- /example/src/components/number-option-preview/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/react-native-qrcode-skia/HEAD/example/src/components/number-option-preview/index.tsx -------------------------------------------------------------------------------- /example/src/components/pressable-scale/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/react-native-qrcode-skia/HEAD/example/src/components/pressable-scale/index.tsx -------------------------------------------------------------------------------- /example/src/components/qrcode-copy-button/hooks/use-active-qrcode-string.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/react-native-qrcode-skia/HEAD/example/src/components/qrcode-copy-button/hooks/use-active-qrcode-string.tsx -------------------------------------------------------------------------------- /example/src/components/qrcode-copy-button/hooks/use-copy-qrcode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/react-native-qrcode-skia/HEAD/example/src/components/qrcode-copy-button/hooks/use-copy-qrcode.tsx -------------------------------------------------------------------------------- /example/src/components/qrcode-copy-button/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/react-native-qrcode-skia/HEAD/example/src/components/qrcode-copy-button/index.tsx -------------------------------------------------------------------------------- /example/src/components/qrcode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/react-native-qrcode-skia/HEAD/example/src/components/qrcode.tsx -------------------------------------------------------------------------------- /example/src/components/separator/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/react-native-qrcode-skia/HEAD/example/src/components/separator/index.tsx -------------------------------------------------------------------------------- /example/src/components/shape-option-preview/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/react-native-qrcode-skia/HEAD/example/src/components/shape-option-preview/index.tsx -------------------------------------------------------------------------------- /example/src/components/shape-option-preview/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/react-native-qrcode-skia/HEAD/example/src/components/shape-option-preview/utils.ts -------------------------------------------------------------------------------- /example/src/components/touchable-highlight/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/react-native-qrcode-skia/HEAD/example/src/components/touchable-highlight/index.tsx -------------------------------------------------------------------------------- /example/src/hooks/useDimensions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/react-native-qrcode-skia/HEAD/example/src/hooks/useDimensions.ts -------------------------------------------------------------------------------- /example/src/providers/fonts-provider/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/react-native-qrcode-skia/HEAD/example/src/providers/fonts-provider/index.tsx -------------------------------------------------------------------------------- /example/src/states/index.ts: -------------------------------------------------------------------------------- 1 | export * from './qrcode'; 2 | -------------------------------------------------------------------------------- /example/src/states/qrcode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/react-native-qrcode-skia/HEAD/example/src/states/qrcode.ts -------------------------------------------------------------------------------- /example/src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/react-native-qrcode-skia/HEAD/example/src/utils/index.ts -------------------------------------------------------------------------------- /example/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/react-native-qrcode-skia/HEAD/example/tsconfig.json -------------------------------------------------------------------------------- /example/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/react-native-qrcode-skia/HEAD/example/webpack.config.js -------------------------------------------------------------------------------- /lefthook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/react-native-qrcode-skia/HEAD/lefthook.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/react-native-qrcode-skia/HEAD/package.json -------------------------------------------------------------------------------- /src/__tests__/generate-matrix.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/react-native-qrcode-skia/HEAD/src/__tests__/generate-matrix.test.tsx -------------------------------------------------------------------------------- /src/__tests__/transform-matrix-into-path.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/react-native-qrcode-skia/HEAD/src/__tests__/transform-matrix-into-path.test.ts -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/react-native-qrcode-skia/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/qrcode/generate-matrix.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/react-native-qrcode-skia/HEAD/src/qrcode/generate-matrix.ts -------------------------------------------------------------------------------- /src/qrcode/transform-matrix-into-path.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/react-native-qrcode-skia/HEAD/src/qrcode/transform-matrix-into-path.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/react-native-qrcode-skia/HEAD/src/types.ts -------------------------------------------------------------------------------- /tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/react-native-qrcode-skia/HEAD/tsconfig.build.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/react-native-qrcode-skia/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/react-native-qrcode-skia/HEAD/vercel.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/react-native-qrcode-skia/HEAD/yarn.lock --------------------------------------------------------------------------------