Closed
Description
Description
react-native-Skia doesn't work on RN78 (new architecture). The error I’m getting is: "Cannot read property 'ReactCurrentOwner' of undefined." Do you plan to add support? Or could the issue be on my end with the setup?
React Native Skia Version
1.11.8
React Native Version
0.78.0
Using New Architecture
- Enabled
Steps to Reproduce
Just create canvas
Snack, Code Example, Screenshot, or Link to Repository
import React from "react";
import { Canvas, Circle, Group } from "@shopify/react-native-skia";
const App = () => {
const width = 256;
const height = 256;
const r = width * 0.33;
return (
<Canvas style={{ width, height }}>
);
};
export default App;