import { View, Text, StyleSheet, TouchableOpacity } from "react-native"; import { useSettings } from "../context/SettingsContext"; export default function LandingScreen({ onFinish }) { const { settings } = useSettings(); return ( Welcome to TodoApp Customize your experience Get Started ); } const styles = StyleSheet.create({ container: { flex: 1, justifyContent: "center", alignItems: "center", padding: 20, }, title: { fontSize: 32, color: "white", marginBottom: 20, }, button: { backgroundColor: "white", padding: 15, borderRadius: 25, marginTop: 30, }, buttonText: { color: "#5784BA", fontSize: 18, }, });