Skip to content

Instantly share code, notes, and snippets.

@SeanDunford
SeanDunford / multiStepFormReactNative.js
Last active April 28, 2022 20:06
Prototype for a multistep form in react native using hooks
/* eslint-disable no-shadow, react/prop-types */
/* This is just temporary as this onboarding needs to be refactored */
import React, { useState } from 'react';
import { StyleSheet, Text } from 'react-native';
import { ScreenView } from '../../shared';
import { dimensions } from '../../../styles';
import { colors } from '../../../styles/colors';
import FirstName from './FirstName';