├── .expo-shared └── assets.json ├── .gitignore ├── App.js ├── README.md ├── app.json ├── assets ├── arrow-forward.png ├── flag.png ├── fonts │ └── Gotham │ │ ├── Gotham-Black.otf │ │ ├── Gotham-Bold.otf │ │ ├── Gotham-BookItalic.otf │ │ ├── Gotham-Light.otf │ │ ├── Gotham-Medium.otf │ │ ├── Gotham-Thin.otf │ │ ├── Gotham-ThinItalic.otf │ │ ├── Gotham-UltraItalic.otf │ │ ├── Gotham-XLight.otf │ │ ├── Gotham-XLightItalic.otf │ │ ├── GothamBold.ttf │ │ ├── GothamBoldItalic.ttf │ │ ├── GothamBook.ttf │ │ ├── GothamBookItalic.ttf │ │ ├── GothamLight.ttf │ │ ├── GothamLightItalic.ttf │ │ ├── GothamMedium.ttf │ │ ├── GothamMediumItalic.ttf │ │ └── GothamMedium_1.ttf ├── icon.png ├── identity.svg ├── screenshots │ ├── onboard_1.png │ ├── onboard_2.png │ ├── onboard_3.png │ ├── onboarding_fingerprint.png │ ├── onboarding_get_started.png │ ├── onboarding_identity.png │ ├── onboarding_registration.png │ ├── onboarding_verification.png │ └── onboarding_welcome.png ├── splash.png └── tick.svg ├── babel.config.js ├── package.json ├── src ├── components │ ├── Background.js │ ├── Fingerprint.js │ ├── GetStartedImage.js │ ├── IdentityImage.js │ ├── LoadAssets.js │ ├── RegistrationImage.js │ ├── ShieldImage.js │ ├── TopImageBackground.js │ ├── VerificationImage.js │ ├── WelcomeBackground.js │ ├── WelcomeImage.js │ ├── icons │ │ └── Tick.js │ └── index.js ├── constants.js ├── navigator.js └── screens │ ├── Fingerprint │ └── index.js │ ├── GetStarted │ ├── Pager.js │ └── index.js │ ├── Identity │ └── index.js │ ├── Registration │ └── index.js │ ├── Verification │ └── index.js │ └── Welcome │ └── index.js └── yarn.lock /.expo-shared/assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyOsei/rn-onboarding-screens/HEAD/.expo-shared/assets.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyOsei/rn-onboarding-screens/HEAD/.gitignore -------------------------------------------------------------------------------- /App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyOsei/rn-onboarding-screens/HEAD/App.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyOsei/rn-onboarding-screens/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyOsei/rn-onboarding-screens/HEAD/app.json -------------------------------------------------------------------------------- /assets/arrow-forward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyOsei/rn-onboarding-screens/HEAD/assets/arrow-forward.png -------------------------------------------------------------------------------- /assets/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyOsei/rn-onboarding-screens/HEAD/assets/flag.png -------------------------------------------------------------------------------- /assets/fonts/Gotham/Gotham-Black.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyOsei/rn-onboarding-screens/HEAD/assets/fonts/Gotham/Gotham-Black.otf -------------------------------------------------------------------------------- /assets/fonts/Gotham/Gotham-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyOsei/rn-onboarding-screens/HEAD/assets/fonts/Gotham/Gotham-Bold.otf -------------------------------------------------------------------------------- /assets/fonts/Gotham/Gotham-BookItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyOsei/rn-onboarding-screens/HEAD/assets/fonts/Gotham/Gotham-BookItalic.otf -------------------------------------------------------------------------------- /assets/fonts/Gotham/Gotham-Light.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyOsei/rn-onboarding-screens/HEAD/assets/fonts/Gotham/Gotham-Light.otf -------------------------------------------------------------------------------- /assets/fonts/Gotham/Gotham-Medium.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyOsei/rn-onboarding-screens/HEAD/assets/fonts/Gotham/Gotham-Medium.otf -------------------------------------------------------------------------------- /assets/fonts/Gotham/Gotham-Thin.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyOsei/rn-onboarding-screens/HEAD/assets/fonts/Gotham/Gotham-Thin.otf -------------------------------------------------------------------------------- /assets/fonts/Gotham/Gotham-ThinItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyOsei/rn-onboarding-screens/HEAD/assets/fonts/Gotham/Gotham-ThinItalic.otf -------------------------------------------------------------------------------- /assets/fonts/Gotham/Gotham-UltraItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyOsei/rn-onboarding-screens/HEAD/assets/fonts/Gotham/Gotham-UltraItalic.otf -------------------------------------------------------------------------------- /assets/fonts/Gotham/Gotham-XLight.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyOsei/rn-onboarding-screens/HEAD/assets/fonts/Gotham/Gotham-XLight.otf -------------------------------------------------------------------------------- /assets/fonts/Gotham/Gotham-XLightItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyOsei/rn-onboarding-screens/HEAD/assets/fonts/Gotham/Gotham-XLightItalic.otf -------------------------------------------------------------------------------- /assets/fonts/Gotham/GothamBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyOsei/rn-onboarding-screens/HEAD/assets/fonts/Gotham/GothamBold.ttf -------------------------------------------------------------------------------- /assets/fonts/Gotham/GothamBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyOsei/rn-onboarding-screens/HEAD/assets/fonts/Gotham/GothamBoldItalic.ttf -------------------------------------------------------------------------------- /assets/fonts/Gotham/GothamBook.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyOsei/rn-onboarding-screens/HEAD/assets/fonts/Gotham/GothamBook.ttf -------------------------------------------------------------------------------- /assets/fonts/Gotham/GothamBookItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyOsei/rn-onboarding-screens/HEAD/assets/fonts/Gotham/GothamBookItalic.ttf -------------------------------------------------------------------------------- /assets/fonts/Gotham/GothamLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyOsei/rn-onboarding-screens/HEAD/assets/fonts/Gotham/GothamLight.ttf -------------------------------------------------------------------------------- /assets/fonts/Gotham/GothamLightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyOsei/rn-onboarding-screens/HEAD/assets/fonts/Gotham/GothamLightItalic.ttf -------------------------------------------------------------------------------- /assets/fonts/Gotham/GothamMedium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyOsei/rn-onboarding-screens/HEAD/assets/fonts/Gotham/GothamMedium.ttf -------------------------------------------------------------------------------- /assets/fonts/Gotham/GothamMediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyOsei/rn-onboarding-screens/HEAD/assets/fonts/Gotham/GothamMediumItalic.ttf -------------------------------------------------------------------------------- /assets/fonts/Gotham/GothamMedium_1.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyOsei/rn-onboarding-screens/HEAD/assets/fonts/Gotham/GothamMedium_1.ttf -------------------------------------------------------------------------------- /assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyOsei/rn-onboarding-screens/HEAD/assets/icon.png -------------------------------------------------------------------------------- /assets/identity.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyOsei/rn-onboarding-screens/HEAD/assets/identity.svg -------------------------------------------------------------------------------- /assets/screenshots/onboard_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyOsei/rn-onboarding-screens/HEAD/assets/screenshots/onboard_1.png -------------------------------------------------------------------------------- /assets/screenshots/onboard_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyOsei/rn-onboarding-screens/HEAD/assets/screenshots/onboard_2.png -------------------------------------------------------------------------------- /assets/screenshots/onboard_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyOsei/rn-onboarding-screens/HEAD/assets/screenshots/onboard_3.png -------------------------------------------------------------------------------- /assets/screenshots/onboarding_fingerprint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyOsei/rn-onboarding-screens/HEAD/assets/screenshots/onboarding_fingerprint.png -------------------------------------------------------------------------------- /assets/screenshots/onboarding_get_started.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyOsei/rn-onboarding-screens/HEAD/assets/screenshots/onboarding_get_started.png -------------------------------------------------------------------------------- /assets/screenshots/onboarding_identity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyOsei/rn-onboarding-screens/HEAD/assets/screenshots/onboarding_identity.png -------------------------------------------------------------------------------- /assets/screenshots/onboarding_registration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyOsei/rn-onboarding-screens/HEAD/assets/screenshots/onboarding_registration.png -------------------------------------------------------------------------------- /assets/screenshots/onboarding_verification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyOsei/rn-onboarding-screens/HEAD/assets/screenshots/onboarding_verification.png -------------------------------------------------------------------------------- /assets/screenshots/onboarding_welcome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyOsei/rn-onboarding-screens/HEAD/assets/screenshots/onboarding_welcome.png -------------------------------------------------------------------------------- /assets/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyOsei/rn-onboarding-screens/HEAD/assets/splash.png -------------------------------------------------------------------------------- /assets/tick.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyOsei/rn-onboarding-screens/HEAD/assets/tick.svg -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyOsei/rn-onboarding-screens/HEAD/babel.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyOsei/rn-onboarding-screens/HEAD/package.json -------------------------------------------------------------------------------- /src/components/Background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyOsei/rn-onboarding-screens/HEAD/src/components/Background.js -------------------------------------------------------------------------------- /src/components/Fingerprint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyOsei/rn-onboarding-screens/HEAD/src/components/Fingerprint.js -------------------------------------------------------------------------------- /src/components/GetStartedImage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyOsei/rn-onboarding-screens/HEAD/src/components/GetStartedImage.js -------------------------------------------------------------------------------- /src/components/IdentityImage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyOsei/rn-onboarding-screens/HEAD/src/components/IdentityImage.js -------------------------------------------------------------------------------- /src/components/LoadAssets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyOsei/rn-onboarding-screens/HEAD/src/components/LoadAssets.js -------------------------------------------------------------------------------- /src/components/RegistrationImage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyOsei/rn-onboarding-screens/HEAD/src/components/RegistrationImage.js -------------------------------------------------------------------------------- /src/components/ShieldImage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyOsei/rn-onboarding-screens/HEAD/src/components/ShieldImage.js -------------------------------------------------------------------------------- /src/components/TopImageBackground.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyOsei/rn-onboarding-screens/HEAD/src/components/TopImageBackground.js -------------------------------------------------------------------------------- /src/components/VerificationImage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyOsei/rn-onboarding-screens/HEAD/src/components/VerificationImage.js -------------------------------------------------------------------------------- /src/components/WelcomeBackground.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyOsei/rn-onboarding-screens/HEAD/src/components/WelcomeBackground.js -------------------------------------------------------------------------------- /src/components/WelcomeImage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyOsei/rn-onboarding-screens/HEAD/src/components/WelcomeImage.js -------------------------------------------------------------------------------- /src/components/icons/Tick.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyOsei/rn-onboarding-screens/HEAD/src/components/icons/Tick.js -------------------------------------------------------------------------------- /src/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyOsei/rn-onboarding-screens/HEAD/src/components/index.js -------------------------------------------------------------------------------- /src/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyOsei/rn-onboarding-screens/HEAD/src/constants.js -------------------------------------------------------------------------------- /src/navigator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyOsei/rn-onboarding-screens/HEAD/src/navigator.js -------------------------------------------------------------------------------- /src/screens/Fingerprint/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyOsei/rn-onboarding-screens/HEAD/src/screens/Fingerprint/index.js -------------------------------------------------------------------------------- /src/screens/GetStarted/Pager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyOsei/rn-onboarding-screens/HEAD/src/screens/GetStarted/Pager.js -------------------------------------------------------------------------------- /src/screens/GetStarted/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyOsei/rn-onboarding-screens/HEAD/src/screens/GetStarted/index.js -------------------------------------------------------------------------------- /src/screens/Identity/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyOsei/rn-onboarding-screens/HEAD/src/screens/Identity/index.js -------------------------------------------------------------------------------- /src/screens/Registration/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyOsei/rn-onboarding-screens/HEAD/src/screens/Registration/index.js -------------------------------------------------------------------------------- /src/screens/Verification/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyOsei/rn-onboarding-screens/HEAD/src/screens/Verification/index.js -------------------------------------------------------------------------------- /src/screens/Welcome/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyOsei/rn-onboarding-screens/HEAD/src/screens/Welcome/index.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyOsei/rn-onboarding-screens/HEAD/yarn.lock --------------------------------------------------------------------------------