![]() |
![]() |
![]() |
|---|
There are many ways to onboard people to your mobile app. But for React-Native, there is solely one component that is a) easy to setup and b) highly customizable:
react-native-onboarding-swiper.
Your new users shouldn't jump in at the deep end. First give them a pleasurable, delightful introduction and only then let them explore your awesome app.
Getting everything running merely takes a minute. Try out the example running in your browser. Or check out this tutorial on YouTube.
npm i react-native-onboarding-swiperyarn add react-native-onboarding-swiperimport Onboarding from 'react-native-onboarding-swiper';
<Onboarding
pages={[
{
backgroundColor: '#fff',
image: <Image source={require('./images/circle.png')} />,
title: 'Onboarding',
subtitle: 'Done with React Native Onboarding Swiper',
},
...
]}
/>Check out the three examples files: the simple example, the example with a Call-to-Action button or the example with custom button components.
pages(required): an array of pages in the following shape:backgroundColor(optional): a background color. The color of the font and dots adapts to the background color. EitherbackgroundColororbackgroundshould be provided.background(optional): a React element rendered behind the page content (e.g. a<LinearGradient />). Use this for gradient or custom backgrounds without the library depending on any specific package. Can be combined withbackgroundColorβ the solid color provides smooth animated transitions between pages while the background element handles visuals.isLight(optional): a bool to override automatic theme detection. Whentrue, text and dots use dark colors; whenfalse, they use light colors. Useful when usingbackgroundsince the library can't automatically detect brightness from a gradient. Defaults tofalsewhen neitherbackgroundColornorisLightis provided.image(required): a component (e.g.<Image />) to display at the top of the page.title(required): a string OR a React-Native component.subtitle(required): a string OR a React-Native component.
nextLabel(optional): a string OR a React-Native component for the Next label. Defaults toNext.showNext(optional): a bool flag indicating whether the Next button is visible. Defaults totrue.skipLabel(optional): a string OR a React-Native component for the Skip label. Defaults toSkip.showSkip(optional): a bool flag indicating whether the Skip button is visible. Defaults totrue.onSkip(optional): a callback that is fired if the Onboarding is skipped.skipToPage(optional): when pressing skip, go to that page (e.g.skipToPage={2}). If this prop is provided, ignoresonSkip.onNext(optional): a callback that is fired when the Next button is pressed.onDone(optional): a callback that is fired after the Onboarding is completed.showDone(optional): a bool flag indicating whether the Done checkmark button is visible. Defaults totrue.
bottomBarHeight(optional): a number for the height of the bottom bar. Defaults to60.bottomBarColor(optional): backgroundColor of the bottom bar. Defaults totransparent.bottomBarHighlight(optional): a bool flag indicating whether the bottom bar should be highlighted. Defaults totrue.controlStatusBar(optional): a bool flag indicating whether the status bar should change with the background color. Defaults totrue.showPagination(optional): whether to show the bottom pagination bar. Defaults totrue.flatlistProps(optional): additional props for the FlatList which holds all the pages.transitionAnimationDuration(optional): The duration in milliseconds for the animation of the background color for the page transition. Defaults to500.allowFontScalingText(optional): Font scaling can cause troubles with high-resolution screens. You may want to disable it. Defaults totrue.allowFontScalingButtons(optional): Font scaling can cause troubles with high-resolution screens. You may want to disable it. Defaults totrue.currentPage(optional): a number to control the currently visible page from the parent. When this prop changes, the component scrolls to the given page. Useful for resetting to the first page when the user navigates back to the screen (see example below). Defaults tonull(uncontrolled).pageIndexCallback(optional): a function that receives the pageindexas a parameter on page change. Example Usage
For the pages in the pages array, you can set the default styles (and override the styles set by this component).
containerStyles(optional): override the default container styles.imageContainerStyles(optional): override the default image container styles e.g. thepaddingBottomof 60.titleStyles(optional): override the default title styles.subTitleStyles(optional): override the default subtitle styles.
For each page in the pages array, you can control whether the user is allowed to swipe or navigate forward/backward:
canSwipeForward(optional): a bool. Whenfalse, forward swiping is blocked and the Next, Done, and Skip buttons are disabled. Defaults totrue.canSwipeBackward(optional): a bool. Whenfalse, backward swiping is blocked. Defaults totrue.
This is useful for requiring the user to complete an action (e.g. fill a form, accept terms) before proceeding. Update the pages array with new state to dynamically enable navigation:
<Onboarding
pages={[
{
backgroundColor: '#fff',
image: <Image source={require('./images/form.png')} />,
title: 'Fill the form',
subtitle: 'Complete all fields to continue',
canSwipeForward: formIsValid,
},
...
]}
/>Note: the imperative goToPage() method is not affected by these conditions and can always navigate to any page.
Each page can override the global button labels:
nextLabel(optional): a string OR a React-Native component. Overrides the globalnextLabelfor this page.skipLabel(optional): a string OR a React-Native component. Overrides the globalskipLabelfor this page.doneLabel(optional): a string OR a React-Native component. Overrides the globaldoneLabelfor this page (applies on the last page).
For each page in the pages array, you can override the default page styles. An example.
titleStyles(optional): modify styles of a specific page's title.subTitleStyles(optional): modify styles of a specific page's subtitle.
You can provide your own custom components for the buttons and the dots. All of them have access to a isLight prop but it's up to you what you do with it. Also checkout this example.
SkipButtonComponent(optional): Skip Button, getsskipLabelas prop.NextButtonComponent(optional): Next Button, getsnextLabelas prop.DoneButtonComponent(optional): Done Button.DotComponent(optional): Dot for the pagination, getsselectedas prop to indicate the active page.
You can use any React element as a page background (e.g. a linear gradient) via the background prop. Pair it with isLight to control text/dot colors since the library can't auto-detect brightness from a gradient.
import LinearGradient from 'react-native-linear-gradient';
<Onboarding
pages={[
{
background: (
<LinearGradient
colors={['#003c8f', '#5a9bf6']}
style={{ flex: 1 }}
/>
),
isLight: false,
image: <Image source={require('./images/circle.png')} />,
title: 'Gradient Page',
subtitle: 'Using a custom background element',
},
{
backgroundColor: '#e9bcbe',
image: <Image source={require('./images/square.png')} />,
title: 'Solid Color Page',
subtitle: 'Still works the same as before',
},
]}
/>You can also combine both backgroundColor and background on the same page β the solid color provides smooth animated transitions while the gradient covers it visually.
You can control the Onboarding component imperatively with useRef.
const onboardingRef = useRef<Onboarding>(null);
<Onboarding
ref={onboardingRef}
pages={pages}
/>
onboardingRef.current.goNext()
onboardingRef.current.goToPage(2, true)
onboardingRef.current.goToPage(2, false)Methods:
goNext(): Go to the next page.goToPage(pageIndex, animated): Go to the selected page.
If you use a navigator (e.g. React Navigation) and want the onboarding to reset to the first page when the user comes back, use the currentPage prop:
import { useCallback, useState } from 'react';
import { useFocusEffect } from '@react-navigation/native';
const OnboardingScreen = () => {
const [page, setPage] = useState(0);
useFocusEffect(
useCallback(() => {
setPage(0);
}, [])
);
return (
<Onboarding
currentPage={page}
pageIndexCallback={setPage}
pages={[...]}
/>
);
};Built-in TypeScript declarations are included. No additional @types package is needed.
If you have a question, found a bug or want to propose a new feature, have a look at the issues page.
Pull requests are especially welcomed when they fix bugs or improve the code quality.
- Update the version in
package.json. - Add an entry to
CHANGELOG.mdwith the new version number and a summary of changes. - Commit:
git commit -am "vX.Y.Z". - Tag:
git tag vX.Y.Z. - Push:
git push && git push --tags. - Publish:
npm publish.
- https://github.com/jacse/react-native-app-intro-slider
- https://github.com/gorhom/react-native-paper-onboarding
- https://github.com/RichardRNStudio/react-native-slider-intro
Built upon the work by Gosha Arinich which was originally inspired by AndroidOnboarder.
MIT.


