├── .circleci └── config.yml ├── .eslintIgnore ├── .eslintrc.json ├── .flowconfig ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug-report.md │ ├── question.md │ └── request-feature.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .npmignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── babel.config.js ├── jest.config.js ├── metro.config.js ├── package.json ├── prettier.config.js └── src ├── .gitignore ├── README.md ├── helper └── useDidMountEffect.js ├── js ├── Gauge.js └── __tests__ │ ├── Gauge.test.js │ └── __snapshots__ │ └── Gauge.test.js.snap ├── package-lock.json ├── package.json └── react-native-gauge.podspec /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwnicoletti/react-native-gauge/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.eslintIgnore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwnicoletti/react-native-gauge/HEAD/.eslintIgnore -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwnicoletti/react-native-gauge/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwnicoletti/react-native-gauge/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwnicoletti/react-native-gauge/HEAD/.github/ISSUE_TEMPLATE/bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwnicoletti/react-native-gauge/HEAD/.github/ISSUE_TEMPLATE/question.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/request-feature.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwnicoletti/react-native-gauge/HEAD/.github/ISSUE_TEMPLATE/request-feature.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwnicoletti/react-native-gauge/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwnicoletti/react-native-gauge/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwnicoletti/react-native-gauge/HEAD/.npmignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwnicoletti/react-native-gauge/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwnicoletti/react-native-gauge/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwnicoletti/react-native-gauge/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwnicoletti/react-native-gauge/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwnicoletti/react-native-gauge/HEAD/babel.config.js -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | preset: 'jest-expo', 3 | }; 4 | -------------------------------------------------------------------------------- /metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwnicoletti/react-native-gauge/HEAD/metro.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwnicoletti/react-native-gauge/HEAD/package.json -------------------------------------------------------------------------------- /prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwnicoletti/react-native-gauge/HEAD/prettier.config.js -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwnicoletti/react-native-gauge/HEAD/src/.gitignore -------------------------------------------------------------------------------- /src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwnicoletti/react-native-gauge/HEAD/src/README.md -------------------------------------------------------------------------------- /src/helper/useDidMountEffect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwnicoletti/react-native-gauge/HEAD/src/helper/useDidMountEffect.js -------------------------------------------------------------------------------- /src/js/Gauge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwnicoletti/react-native-gauge/HEAD/src/js/Gauge.js -------------------------------------------------------------------------------- /src/js/__tests__/Gauge.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwnicoletti/react-native-gauge/HEAD/src/js/__tests__/Gauge.test.js -------------------------------------------------------------------------------- /src/js/__tests__/__snapshots__/Gauge.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwnicoletti/react-native-gauge/HEAD/src/js/__tests__/__snapshots__/Gauge.test.js.snap -------------------------------------------------------------------------------- /src/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwnicoletti/react-native-gauge/HEAD/src/package-lock.json -------------------------------------------------------------------------------- /src/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwnicoletti/react-native-gauge/HEAD/src/package.json -------------------------------------------------------------------------------- /src/react-native-gauge.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwnicoletti/react-native-gauge/HEAD/src/react-native-gauge.podspec --------------------------------------------------------------------------------