我正在尝试在React Native中创建ExpoPixi.Sketch视图,但是在加载应用程序时显示错误'Cannot read property 'viewManagersNames' of undefined'
。我找不到任何关于此错误的在线信息。
import React from 'react';
import { Text, View, StyleSheet } from 'react-native';
import { Provider } from 'react-redux';
import EStyleSheet from 'react-native-extended-stylesheet';
import ExpoPixi from 'expo-pixi';
import { Constants } from 'expo';
export default class App extends React.Component {
render() {
const color = 0xff0000;
const width = 5;
const alpha = 0.5;
return (
<View style={styles.container}>
<ExpoPixi.Sketch
strokeColor={color}
strokeWidth={width}
strokeAlpha={alpha}
style={{ flex: 1 }}
/>
</View>
);
}
}
const styles = StyleSheet.create({
container: {
flex: 1,
paddingTop: Constants.statusBarHeight,
backgroundColor: 'green',
}
});
我在另一个新的React Native项目中尝试了相同的代码,并且效果很好,创建了一个屏幕,用户可以用手指画图。
这也显示在控制台中,但是我正在使用expo,所以我认为我不能使用react-native链接。
*No native NativeModulesProxy found among NativeModules, are you sure the expo-react-native-adapter's modules are linked properly
如何解决此错误?