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.
Files changed (2) hide show
  1. package/index.jsx +7 -3
  2. 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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-native-in-app-debugger",
3
- "version": "1.0.34",
3
+ "version": "1.0.35",
4
4
  "description": "This library's main usage is to be used by Non-Technical testers during UAT, SIT or any testing phase.",
5
5
  "main": "index.jsx",
6
6
  "scripts": {