├── .editorconfig ├── .eslintignore ├── .eslintrc ├── .gitignore ├── .npmrc ├── .prettierrc ├── CHANGELOG.md ├── LICENSE ├── README.md ├── babel.config.js ├── demo.gif ├── jest.config.json ├── package.json ├── src ├── animated-background-color-view │ ├── __snapshots__ │ │ └── animated-background-color-view.test.js.snap │ ├── animated-background-color-view.component.js │ └── animated-background-color-view.test.js └── index.js └── test-setup.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyschroeder/react-native-animated-background-color-view/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | .expo/ 2 | coverage/ 3 | lib/ 4 | node_modules/ 5 | npm-debug.* 6 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyschroeder/react-native-animated-background-color-view/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .expo/ 2 | coverage/ 3 | lib/ 4 | node_modules/ 5 | npm-debug.* 6 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | tag-version-prefix="" 2 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyschroeder/react-native-animated-background-color-view/HEAD/.prettierrc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyschroeder/react-native-animated-background-color-view/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyschroeder/react-native-animated-background-color-view/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyschroeder/react-native-animated-background-color-view/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyschroeder/react-native-animated-background-color-view/HEAD/babel.config.js -------------------------------------------------------------------------------- /demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyschroeder/react-native-animated-background-color-view/HEAD/demo.gif -------------------------------------------------------------------------------- /jest.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyschroeder/react-native-animated-background-color-view/HEAD/jest.config.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyschroeder/react-native-animated-background-color-view/HEAD/package.json -------------------------------------------------------------------------------- /src/animated-background-color-view/__snapshots__/animated-background-color-view.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyschroeder/react-native-animated-background-color-view/HEAD/src/animated-background-color-view/__snapshots__/animated-background-color-view.test.js.snap -------------------------------------------------------------------------------- /src/animated-background-color-view/animated-background-color-view.component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyschroeder/react-native-animated-background-color-view/HEAD/src/animated-background-color-view/animated-background-color-view.component.js -------------------------------------------------------------------------------- /src/animated-background-color-view/animated-background-color-view.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyschroeder/react-native-animated-background-color-view/HEAD/src/animated-background-color-view/animated-background-color-view.test.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyschroeder/react-native-animated-background-color-view/HEAD/src/index.js -------------------------------------------------------------------------------- /test-setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyschroeder/react-native-animated-background-color-view/HEAD/test-setup.js --------------------------------------------------------------------------------