We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bf7775b commit 9daae33Copy full SHA for 9daae33
Modules/@babylonjs/react-native/EngineView.tsx
@@ -92,7 +92,7 @@ export const EngineView: FunctionComponent<EngineViewProps> = (props: EngineView
92
93
if (!failedInitialization) {
94
return (
95
- <View style={props.style}>
+ <View style={[props.style, {overflow: "hidden"}]}>
96
<NativeEngineView style={{flex: 1}} />
97
{ fps && <Text style={{color: 'yellow', position: 'absolute', margin: 10, right: 0, top: 0}}>FPS: {Math.round(fps)}</Text> }
98
</View>
0 commit comments