No ViewManager found for class JBAnimatedText
See original GitHub issueDescription
I encounter the error in the issue title with the code snippet below.
Screenshots
Snack or minimal code example
const points = useDerivedValue(() => {
const p = point.value.data.y;
return `${round(p, 1)}`;
});
const animatedPointsProps = useAnimatedProps(() => {
return {
text: points.value,
};
});
return (
<View style={styles.contentContainer}>
<AnimateableText
style={styles.date}
animatedProps={animatedPointsProps} // same error if I hardcode text='hello'
/>
</View>
);
Package versions
- React Native Animateable Text: 0.6.2
- React Native Reanimated: 2.2.0
Issue Analytics
- State:
- Created 2 years ago
- Comments:6
Top Results From Across the Web
getting an error No ViewManager defined for class RCTRawText
I made these changes so that my android phone starts showing the longitude and latitude without timing out. I am not sure where...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
@JesperSporronRocker Yes that’s right, we don’t support Expo at the moment. Looking for someone in the community to implement and maintain it, we don’t have any Expo projects.
I have the same issue, can reproduce using OP:s code snippet. Detached Expo project. The error message is different on Android and iOS and they look as such:
No ViewManager found for class JBAnimatedText.No component found for view with name "JBAnimatedText".Versions:
react-native: 0.63.4react-native-animateable-text: tried all versions from 0.5.9 up to 0.8.0react-native-reanimated: 2.2.0Maybe it doesn’t support Expo at all? That would be a shame.