├── .eslintrc ├── .gitignore ├── .prettierrc ├── LICENSE ├── README.md ├── package.json ├── src ├── LinearGradient.tsx ├── RadialGradient.tsx ├── index.ts ├── types │ ├── Color.ts │ └── index.ts └── utils │ ├── getAnglePercentageObject.ts │ ├── getPercentageFromAngle.ts │ └── index.ts ├── tsconfig.json └── yarn.lock /.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "@react-native-community" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfReact/react-native-gradients/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfReact/react-native-gradients/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfReact/react-native-gradients/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfReact/react-native-gradients/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfReact/react-native-gradients/HEAD/package.json -------------------------------------------------------------------------------- /src/LinearGradient.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfReact/react-native-gradients/HEAD/src/LinearGradient.tsx -------------------------------------------------------------------------------- /src/RadialGradient.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfReact/react-native-gradients/HEAD/src/RadialGradient.tsx -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfReact/react-native-gradients/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/types/Color.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfReact/react-native-gradients/HEAD/src/types/Color.ts -------------------------------------------------------------------------------- /src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfReact/react-native-gradients/HEAD/src/types/index.ts -------------------------------------------------------------------------------- /src/utils/getAnglePercentageObject.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfReact/react-native-gradients/HEAD/src/utils/getAnglePercentageObject.ts -------------------------------------------------------------------------------- /src/utils/getPercentageFromAngle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfReact/react-native-gradients/HEAD/src/utils/getPercentageFromAngle.ts -------------------------------------------------------------------------------- /src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfReact/react-native-gradients/HEAD/src/utils/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfReact/react-native-gradients/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfReact/react-native-gradients/HEAD/yarn.lock --------------------------------------------------------------------------------