react-native-in-app-debugger 1.0.18 → 1.0.19
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 +3 -3
- package/package.json +1 -1
package/index.jsx
CHANGED
|
@@ -94,14 +94,14 @@ export default ({
|
|
|
94
94
|
<View style={styles.badgeContainer}>
|
|
95
95
|
{!!numPendingApiCalls && (
|
|
96
96
|
<View style={[styles.badge, { backgroundColor: "orange" }]}>
|
|
97
|
-
<Text style={{ fontSize:
|
|
97
|
+
<Text style={{ fontSize: 6, color: "white" }}>
|
|
98
98
|
{numPendingApiCalls}
|
|
99
99
|
</Text>
|
|
100
100
|
</View>
|
|
101
101
|
)}
|
|
102
102
|
{!!errors && (
|
|
103
103
|
<View style={[styles.badge, { backgroundColor: "red" }]}>
|
|
104
|
-
<Text style={{ fontSize:
|
|
104
|
+
<Text style={{ fontSize: 6, color: "white" }}>{errors}</Text>
|
|
105
105
|
</View>
|
|
106
106
|
)}
|
|
107
107
|
</View>
|
|
@@ -185,7 +185,7 @@ const styles = StyleSheet.create({
|
|
|
185
185
|
zIndex: 999,
|
|
186
186
|
},
|
|
187
187
|
badge: {
|
|
188
|
-
padding:
|
|
188
|
+
padding: 3,
|
|
189
189
|
borderRadius: 999,
|
|
190
190
|
},
|
|
191
191
|
close: {
|