react-native-in-app-debugger 1.0.34 → 1.0.35
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.jsx +7 -3
- package/package.json +1 -1
package/index.jsx
CHANGED
|
@@ -117,9 +117,7 @@ export default ({
|
|
|
117
117
|
</TouchableOpacity>
|
|
118
118
|
) : (
|
|
119
119
|
<SafeAreaView style={{ flex: 1 }}>
|
|
120
|
-
<View
|
|
121
|
-
style={{ backgroundColor: "black", flexDirection: "row", gap: 7 }}
|
|
122
|
-
>
|
|
120
|
+
<View style={styles.labelContainer}>
|
|
123
121
|
{displayLabels.map((l) => (
|
|
124
122
|
<Label key={l}>{l}</Label>
|
|
125
123
|
))}
|
|
@@ -198,4 +196,10 @@ const styles = StyleSheet.create({
|
|
|
198
196
|
fontSize: 16,
|
|
199
197
|
paddingHorizontal: 10,
|
|
200
198
|
},
|
|
199
|
+
labelContainer: {
|
|
200
|
+
backgroundColor: "black",
|
|
201
|
+
flexDirection: "row",
|
|
202
|
+
columnGap: 7,
|
|
203
|
+
flexWrap: "wrap",
|
|
204
|
+
},
|
|
201
205
|
});
|
package/package.json
CHANGED