import React from 'react'; import { Text, Layout, useTheme, IconRegistry, ApplicationProvider, } from '@ui-kitten/components'; import * as eva from '@eva-design/eva'; import { Mapping } from '@config/theme'; import { StyleSheet } from 'react-native'; import { EvaIconsPack } from '@ui-kitten/eva-icons'; import Icon from 'react-native-vector-icons/dist/FontAwesome5'; import { SafeAreaProvider } from 'react-native-safe-area-context'; const Home = () => { const theme = useTheme(); return ( React Native App ); }; export default () => { return ( ); }; const styles = StyleSheet.create({ container: { flex: 1, alignItems: 'center', justifyContent: 'center', }, });