We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f1e0217 commit 5f6b336Copy full SHA for 5f6b336
Libraries/YellowBox/UI/YellowBoxList.js
@@ -126,16 +126,16 @@ const styles = StyleSheet.create({
126
list: {
127
bottom: 0,
128
position: 'absolute',
129
- width: '100%',
+ width: Platform.OS === 'win32' ? 270: '100%',
130
},
131
dismissAll: {
132
- bottom: '100%',
+ bottom: Platform.OS === 'win32' ? undefined : '100%',
133
flexDirection: 'row',
134
justifyContent: 'flex-end',
135
paddingBottom: 4,
136
paddingEnd: 4,
137
138
+ width: Platform.OS === 'win32' ? 350: '100%',
139
140
safeArea: {
141
backgroundColor: YellowBoxStyle.getBackgroundColor(0.95),
0 commit comments