diff --git a/Libraries/ReactNative/YellowBox.js b/Libraries/ReactNative/YellowBox.js
index d171da726..e8be755b0 100644
--- a/Libraries/ReactNative/YellowBox.js
+++ b/Libraries/ReactNative/YellowBox.js
@@ -240,7 +240,7 @@ const WarningInspector = ({
{countSentence}
- {stacktraceVisible ? '▼' : '▶' } Stacktrace
+ {stacktraceVisible ? '\u{25BC}' : '\u{25B6}'} Stacktrace
@@ -396,17 +396,12 @@ const rowHeight = 46;
var styles = StyleSheet.create({
fullScreen: {
- backgroundColor: 'transparent',
- position: 'absolute',
- left: 0,
- right: 0,
- top: 0,
- bottom: 0,
+ height: '100%',
elevation: Number.MAX_VALUE
},
inspector: {
backgroundColor: backgroundColor(0.95),
- flex: 1,
+ height: '100%',
paddingTop: 5,
elevation: Number.MAX_VALUE
},
@@ -459,9 +454,7 @@ var styles = StyleSheet.create({
elevation: Number.MAX_VALUE
},
listRow: {
- position: 'relative',
backgroundColor: backgroundColor(0.95),
- flex: 1,
height: rowHeight,
marginTop: rowGutter,
},