import { StyleSheet, Text, View, Button} from 'react-native'; export default function Settings({theme, changeTheme}:any){ return ( This is settings change theme ) } const style = (theme:any) => { return StyleSheet.create({ container: { }, button: { backgroundColor: theme.primary, padding: 10, alignContent: 'center', color: theme.text, width: 120, margin: 10, borderRadius: 5, }, text: { color: theme.text, } }); }