├── .babelrc ├── .gitignore ├── .watchmanconfig ├── App.js ├── CircleTransition.js ├── README.md ├── Swipe.js ├── app.json ├── assets └── icons │ ├── app-icon.png │ └── loading-icon.png ├── mock.gif └── package.json /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narendrashetty/onboarding-RN/HEAD/.babelrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/**/* 2 | .expo/* 3 | npm-debug.* 4 | yarn.lock -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narendrashetty/onboarding-RN/HEAD/App.js -------------------------------------------------------------------------------- /CircleTransition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narendrashetty/onboarding-RN/HEAD/CircleTransition.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narendrashetty/onboarding-RN/HEAD/README.md -------------------------------------------------------------------------------- /Swipe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narendrashetty/onboarding-RN/HEAD/Swipe.js -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narendrashetty/onboarding-RN/HEAD/app.json -------------------------------------------------------------------------------- /assets/icons/app-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narendrashetty/onboarding-RN/HEAD/assets/icons/app-icon.png -------------------------------------------------------------------------------- /assets/icons/loading-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narendrashetty/onboarding-RN/HEAD/assets/icons/loading-icon.png -------------------------------------------------------------------------------- /mock.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narendrashetty/onboarding-RN/HEAD/mock.gif -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narendrashetty/onboarding-RN/HEAD/package.json --------------------------------------------------------------------------------