import { StyleSheet, Text, View } from 'react-native'; import { useEffect, useState } from 'react'; import {darkTheme} from '../lib/theme'; import { color } from '@rneui/themed/dist/config'; export default function Home({theme}:any){ return ( This is home ) } const style = (theme:any) => { return StyleSheet.create({ container: { }, text: { color: theme.text, } }); }