You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I get this Error even when I have installed @react-native-qrcode-svg and @react-native-svg.
And I didn't find any solution.
`
import React from 'react';
import { View, Text, SafeAreaView, TouchableOpacity, StyleSheet } from 'react-native';
import QRCode from 'react-native-qrcode-svg';
const TransactionDetailsScreen = ({ navigation }) => {
const route = useRoute();
const { person } = route.params;
return (
<SafeAreaView style={{ flex: 1 }}>
<View style={{ flex: 1, padding: 16 }}>
<TouchableOpacity onPress={() => navigation.replace('DrawerNavigatorRoutes')} style={styles.goBackButton}>
I get this Error even when I have installed @react-native-qrcode-svg and @react-native-svg.
And I didn't find any solution.
`
import React from 'react';
import { View, Text, SafeAreaView, TouchableOpacity, StyleSheet } from 'react-native';
import QRCode from 'react-native-qrcode-svg';
const TransactionDetailsScreen = ({ navigation }) => {
const route = useRoute();
const { person } = route.params;
return (
<SafeAreaView style={{ flex: 1 }}>
<View style={{ flex: 1, padding: 16 }}>
<TouchableOpacity onPress={() => navigation.replace('DrawerNavigatorRoutes')} style={styles.goBackButton}>
Go Back
<View
style={{
flex: 1,
alignItems: 'center',
justifyContent: 'center',
}}>
{person.id}
);
};
export default TransactionDetailsScreen;
`
The text was updated successfully, but these errors were encountered: