Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Modules/@babylonjs/react-native/EngineView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -130,9 +130,9 @@ export const EngineView: FunctionComponent<EngineViewProps> = (props: EngineView
}

return (
<View style={{ flex: 1, justifyContent: 'center', alignItems: 'center' }}>
<Text style={{ fontSize: 24 }}>{message}</Text>
<Text style={{ fontSize: 12 }}>React Native remote debugging does not work with Babylon Native.</Text>
<View style={{ flex: 1, justifyContent: 'center', alignItems: 'center', backgroundColor: 'white' }}>
<Text style={{ fontSize: 24, color: 'black' }}>{message}</Text>
<Text style={{ fontSize: 12, color: 'black' }}>React Native remote debugging does not work with Babylon Native.</Text>
</View>
);
}
Expand Down