react-native-versatile-onboarding
v0.7.0
Published
react-native-versatile-onboarding is a highly customizable and easy-to-integrate React Native library designed to enhance the onboarding experience for mobile applications. This library offers a rich set of animations, flexible layouts, and an intuitive A
Downloads
20
Maintainers
Readme
React-native-versatile-onboarding is a highly customizable and easy-to-integrate React Native library designed to enhance the onboarding experience for mobile applications. This library offers a rich set of animations, flexible layouts, and an intuitive API that caters to both developers and designers looking to create compelling, informative, and interactive onboarding flows.
Installation
npm install react-native-versatile-onboarding
Usage
import * as React from 'react';
import VersatileOnboarding from 'react-native-versatile-onboarding';
import OnboardingItem from './OnboardingItem';
import data from './data';
export default function App() {
return (
<VersatileOnboarding>
{data.map((item) => (
<OnboardingItem
Illustration={item.illustration}
description={item.description}
title={item.title}
key={item.id}
/>
))}
</VersatileOnboarding>
);
}
Configuration
Contributing
See the contributing guide to learn how to contribute to the repository and the development workflow.
License
MIT
Made with ❤️