react-native-opengl-native
v1.0.8
Published
React Native Native UI Component with OpenGL ES 2.0
Readme
react-native-opengl-native
This is android native ui component written in Java.
It expose MyGLBox component for react native.
Basic usage:
import MyGLBox from 'react-native-opengl-native';
...
<View style={{ flex: 1, width: '100%', height: '100%', overflow: 'hidden' }}>
<MyGLBox
style={{ flex: 1, width: '100%', height: '100%' }}
text="Hello world!!"}
/>
</View>
...