Reputation: 11
I'm trying to include a link to an external url with key/value pairs prefaced with & using react-native-render-html in an app developed with expo but when I run the code on Expo Go client I've got the error:
TypeError: undefined is not an object (evaluating 'this.entityTrie[0]')
I'm using:
I'm running expo-cli on Windows 10 Pro and I've tested the bundle on 2 different devices: one Redmi Note 7 with Android 9 and one Redmi 9C with Android 10.
The most disconcerting thing is that if I generate the .apk with expo and install it on the devices it works.
The code is quite simple:
import { StatusBar } from 'expo-status-bar';
import React from 'react';
import { StyleSheet, Text, useWindowDimensions, View } from 'react-native';
import RenderHtml from 'react-native-render-html';
const source = {
html: `<a
href="http://www.fundacioninfosalud.org/verDoc.aspx?id=1023&tipo=2"
style="text-align:center;">
A test link!
</a>`
};
export default function App() {
const { width } = useWindowDimensions();
return (
<View style={styles.container}>
<Text>Open up App.js to start working on your app!</Text>
<StatusBar style="auto" />
<RenderHtml
contentWidth={width}
source={source}
/>
</View>
);
}
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: '#fff',
alignItems: 'center',
justifyContent: 'center',
},
});
I've tried to substitute & by %26 but it does not work.
I've uploaded the code at this git repository.
Anybody would know how I can solve it?
Thanks
Upvotes: 0
Views: 598
Reputation: 11
As Jules Sam. commented I was using a bit old version of Node, following his suggestions I have updated the libraries and it has worked.
Initial versions:
Final versions:
I followed this steps:
Upvotes: 0