├── .babelrc ├── .eslintignore ├── .eslintrc ├── .gitignore ├── README.md ├── __tests__ ├── SCLAlert.test.js ├── SCLAlertButton.test.js ├── SCLAlertSubtitle.test.js ├── SCLAlertTitle.test.js └── __snapshots__ │ ├── SCLAlert.test.js.snap │ ├── SCLAlertButton.test.js.snap │ ├── SCLAlertSubtitle.test.js.snap │ └── SCLAlertTitle.test.js.snap ├── demo-1.jpeg ├── demo-2.jpeg ├── demo-3.jpeg ├── index.js ├── package.json ├── src ├── components │ ├── SCLAlert.js │ ├── SCLAlertButton.js │ ├── SCLAlertHeader.js │ ├── SCLAlertSubtitle.js │ ├── SCLAlertTitle.js │ └── index.js ├── config │ ├── images.js │ ├── types.js │ └── variables.js └── helpers │ ├── dimensions.js │ └── scalling.js ├── testenv.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelmotta/react-native-scl-alert/HEAD/.babelrc -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelmotta/react-native-scl-alert/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelmotta/react-native-scl-alert/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelmotta/react-native-scl-alert/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelmotta/react-native-scl-alert/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/SCLAlert.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelmotta/react-native-scl-alert/HEAD/__tests__/SCLAlert.test.js -------------------------------------------------------------------------------- /__tests__/SCLAlertButton.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelmotta/react-native-scl-alert/HEAD/__tests__/SCLAlertButton.test.js -------------------------------------------------------------------------------- /__tests__/SCLAlertSubtitle.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelmotta/react-native-scl-alert/HEAD/__tests__/SCLAlertSubtitle.test.js -------------------------------------------------------------------------------- /__tests__/SCLAlertTitle.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelmotta/react-native-scl-alert/HEAD/__tests__/SCLAlertTitle.test.js -------------------------------------------------------------------------------- /__tests__/__snapshots__/SCLAlert.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelmotta/react-native-scl-alert/HEAD/__tests__/__snapshots__/SCLAlert.test.js.snap -------------------------------------------------------------------------------- /__tests__/__snapshots__/SCLAlertButton.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelmotta/react-native-scl-alert/HEAD/__tests__/__snapshots__/SCLAlertButton.test.js.snap -------------------------------------------------------------------------------- /__tests__/__snapshots__/SCLAlertSubtitle.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelmotta/react-native-scl-alert/HEAD/__tests__/__snapshots__/SCLAlertSubtitle.test.js.snap -------------------------------------------------------------------------------- /__tests__/__snapshots__/SCLAlertTitle.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelmotta/react-native-scl-alert/HEAD/__tests__/__snapshots__/SCLAlertTitle.test.js.snap -------------------------------------------------------------------------------- /demo-1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelmotta/react-native-scl-alert/HEAD/demo-1.jpeg -------------------------------------------------------------------------------- /demo-2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelmotta/react-native-scl-alert/HEAD/demo-2.jpeg -------------------------------------------------------------------------------- /demo-3.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelmotta/react-native-scl-alert/HEAD/demo-3.jpeg -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelmotta/react-native-scl-alert/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelmotta/react-native-scl-alert/HEAD/package.json -------------------------------------------------------------------------------- /src/components/SCLAlert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelmotta/react-native-scl-alert/HEAD/src/components/SCLAlert.js -------------------------------------------------------------------------------- /src/components/SCLAlertButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelmotta/react-native-scl-alert/HEAD/src/components/SCLAlertButton.js -------------------------------------------------------------------------------- /src/components/SCLAlertHeader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelmotta/react-native-scl-alert/HEAD/src/components/SCLAlertHeader.js -------------------------------------------------------------------------------- /src/components/SCLAlertSubtitle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelmotta/react-native-scl-alert/HEAD/src/components/SCLAlertSubtitle.js -------------------------------------------------------------------------------- /src/components/SCLAlertTitle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelmotta/react-native-scl-alert/HEAD/src/components/SCLAlertTitle.js -------------------------------------------------------------------------------- /src/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelmotta/react-native-scl-alert/HEAD/src/components/index.js -------------------------------------------------------------------------------- /src/config/images.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelmotta/react-native-scl-alert/HEAD/src/config/images.js -------------------------------------------------------------------------------- /src/config/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelmotta/react-native-scl-alert/HEAD/src/config/types.js -------------------------------------------------------------------------------- /src/config/variables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelmotta/react-native-scl-alert/HEAD/src/config/variables.js -------------------------------------------------------------------------------- /src/helpers/dimensions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelmotta/react-native-scl-alert/HEAD/src/helpers/dimensions.js -------------------------------------------------------------------------------- /src/helpers/scalling.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelmotta/react-native-scl-alert/HEAD/src/helpers/scalling.js -------------------------------------------------------------------------------- /testenv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelmotta/react-native-scl-alert/HEAD/testenv.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelmotta/react-native-scl-alert/HEAD/yarn.lock --------------------------------------------------------------------------------