import React from "react"; import { View, Text, TouchableOpacity, StyleSheet, Image } from "react-native"; import MaterialIcons from "@expo/vector-icons/MaterialIcons"; import Layout from "@Components/Layout/Layout"; import { useTranslation } from "react-i18next"; import { useTheme } from "@Styles"; const OnboardingScreen = ({ navigation }) => { const { t } = useTranslation(); const { isDark } = useTheme(); return ( DILIGENT navigation.navigate("Login")} > {t("common.letsBegin")} ); }; const styles = StyleSheet.create({ container: { flex: 1, justifyContent: "center", alignItems: "center", }, headText: { fontWeight: "bold", fontSize: 70, fontFamily: "poppins-semibold", }, logo: { flex: 1, justifyContent: "center", alignItems: "center", }, button: { backgroundColor: "#AD40AF", padding: 20, width: "90%", borderRadius: 10, marginBottom: 50, flexDirection: "row", justifyContent: "space-between", }, buttonText: { color: "white", fontSize: 18, textAlign: "center", fontWeight: "bold", fontFamily: "poppins-regular", }, }); export default OnboardingScreen;