import {Image, StyleSheet} from "react-native";
import React, {useRef} from "react";
import {Button, Text, TextField, View} from "react-native-ui-lib";
import Onboarding from "react-native-onboarding-swiper";
const OnboardingFlow = () => {
const onboardingRef = useRef(null);
return (
),
title: Welcome to Cally,
subtitle: (
Lightening Mental Loads, One Family at a Time
),
},
{
backgroundColor: "#f9f8f7",
title: Get started with Cally,
image: (
),
subtitle: (
{/**/}
{/**/}
),
},
]}
/>
);
};
export default OnboardingFlow;
const styles = StyleSheet.create({
textfield: {
backgroundColor: "white",
marginVertical: 10,
padding: 30,
height: 45,
borderRadius: 50,
},
});