All Projects → instamobile → react-native-walkthrough

instamobile / react-native-walkthrough

Licence: other
React Native Walkthrough User Onboarding Flow to start your react native app development

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to react-native-walkthrough

fixed-deposits-sample-app
A sample Fixed Deposit app built using Setu's FD SDK
Stars: ✭ 17 (-54.05%)
Mutual labels:  expo
expo-rn-firebase-image-upload
example of how to upload image in expo with react-native and firebase
Stars: ✭ 47 (+27.03%)
Mutual labels:  expo
expo-deploy
Bash script to deploy to different Expo environments (https://expo.io)
Stars: ✭ 40 (+8.11%)
Mutual labels:  expo
expo-next-monorepo-example
Create a universal React app using Expo and Next.js in a monorepo
Stars: ✭ 268 (+624.32%)
Mutual labels:  expo
app-monorepo
Secure, open source and community driven crypto wallet runs on all platforms and trusted by millions.
Stars: ✭ 1,282 (+3364.86%)
Mutual labels:  expo
ad-b2c-react-native
React Native Azure B2C Auth using pure js. This doesn't require eject from Expo.
Stars: ✭ 54 (+45.95%)
Mutual labels:  expo
tempo-run
Universal Expo App for building personalised running playlists with Spotify
Stars: ✭ 34 (-8.11%)
Mutual labels:  expo
react-native-shadow-2
Cross-platform shadow for React Native. Supports Android, iOS, Web and Expo.
Stars: ✭ 442 (+1094.59%)
Mutual labels:  expo
apple-notes
A clone of the Apple Notes app but made universally with Expo
Stars: ✭ 53 (+43.24%)
Mutual labels:  expo
heylinda-app
The open source and free meditation app alternative for everyone. Built with React Native and Expo.
Stars: ✭ 481 (+1200%)
Mutual labels:  expo
eas-monorepo-example
Fast pnpm monorepo for cross-platform apps built with Expo / React Native and React.
Stars: ✭ 187 (+405.41%)
Mutual labels:  expo
ikuradon
Mastodon client app for React Native(Expo App)
Stars: ✭ 41 (+10.81%)
Mutual labels:  expo
chat-widget-native
Papercups chat widget for React Native/Expo
Stars: ✭ 24 (-35.14%)
Mutual labels:  expo
expo-firebase-auth-starter
Starter project for Expo and Firebase (with Authentication)
Stars: ✭ 31 (-16.22%)
Mutual labels:  expo
jellyfin-expo
Jellyfin Mobile for iOS
Stars: ✭ 164 (+343.24%)
Mutual labels:  expo
app-sense
📱 Easily learn & create React Native app basics using zero coding, drag-and-drop interface & logic blocks.
Stars: ✭ 86 (+132.43%)
Mutual labels:  expo
Auto Overnight
학교 외박신청 자동화 App Based in React Native
Stars: ✭ 12 (-67.57%)
Mutual labels:  expo
expo-three-template
Template for building three.js apps in expo
Stars: ✭ 12 (-67.57%)
Mutual labels:  expo
proffy
React Native + ReactJS + NodeJS project developed on RocketSeat NexLevelWeek. This project is based on an application for connect students and teachers.
Stars: ✭ 30 (-18.92%)
Mutual labels:  expo
tic-tac-toe-app
Online multiplayer Tic Tac Toe game for iOS, Android, and web.
Stars: ✭ 34 (-8.11%)
Mutual labels:  expo

Walkthrough Flow in React Native

Check our this implementation of a walkthrough flow in React Native. Beautiful design, clean and extensible code and modularized flow.

Features

  • Highly customizable source code
  • Unlimited number of steps
  • Optimized for both iOS and Android

Previews

educational walkthrough flow react native react native walkthrough react native walkthrough onboarding flow

Get Started

const WalkthroughAppConfig = {
  onboardingConfig: {
    walkthroughScreens: [
      {
        icon: require("../assets/react-native.png"),
        title: "React Native Walkthrough",
        description: "Welcome your users with a beautiful app walkthrough.",
      },
      {
        icon: require("../assets/educate.png"),
        title: "Educate",
        description:
          "Showcase features to new users so that they get to love your app.",
      },
      {
        icon: require("../assets/bell.png"),
        title: "Get Notified",
        description: "Describe the value proposition of each core feature.",
      },
    ],
  },
};

const lightColorSet = {
  mainThemeBackgroundColor: "#ffffff",
  mainThemeForegroundColor: "#788eec",
};

const darkColorSet = {
  mainThemeBackgroundColor: "#121212",
  mainThemeForegroundColor: "#788eec",
};

const colorSet = {
  ...lightColorSet,
  light: lightColorSet,
  dark: darkColorSet,
  "no-preference": lightColorSet,
};

const DynamicAppStyles = {
  colorSet,
};

<WalkthroughScreen
  appConfig={WalkthroughAppConfig}
  appStyles={DynamicAppStyles}
/>

Coded with ❤️ by Instamobile and Swift Projects.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].