Skip to content

Commit 7123f41

Browse files
Error message colors made it not visible (#391)
Co-authored-by: Cedric Guillemet <[email protected]>
1 parent da866e9 commit 7123f41

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Modules/@babylonjs/react-native/EngineView.tsx

+3-3
Original file line numberDiff line numberDiff line change
@@ -130,9 +130,9 @@ export const EngineView: FunctionComponent<EngineViewProps> = (props: EngineView
130130
}
131131

132132
return (
133-
<View style={{ flex: 1, justifyContent: 'center', alignItems: 'center' }}>
134-
<Text style={{ fontSize: 24 }}>{message}</Text>
135-
<Text style={{ fontSize: 12 }}>React Native remote debugging does not work with Babylon Native.</Text>
133+
<View style={{ flex: 1, justifyContent: 'center', alignItems: 'center', backgroundColor: 'white' }}>
134+
<Text style={{ fontSize: 24, color: 'black' }}>{message}</Text>
135+
<Text style={{ fontSize: 12, color: 'black' }}>React Native remote debugging does not work with Babylon Native.</Text>
136136
</View>
137137
);
138138
}

0 commit comments

Comments
 (0)