react-native-in-app-debugger 1.0.15 → 1.0.16
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 +1 -1
- package/package.json +1 -1
- package/useAnimation.ts +1 -1
package/index.jsx
CHANGED
|
@@ -175,7 +175,7 @@ const styles = StyleSheet.create({
|
|
|
175
175
|
width: "100%",
|
|
176
176
|
height: "100%",
|
|
177
177
|
},
|
|
178
|
-
label: { color: "white", textAlign: "center", fontSize:
|
|
178
|
+
label: { color: "white", textAlign: "center", fontSize: 6 },
|
|
179
179
|
badgeContainer: {
|
|
180
180
|
gap: 3,
|
|
181
181
|
flexDirection: "row",
|
package/package.json
CHANGED
package/useAnimation.ts
CHANGED
|
@@ -2,7 +2,7 @@ import { useEffect, useRef, useState } from 'react';
|
|
|
2
2
|
import { Animated, PanResponder, useWindowDimensions } from 'react-native';
|
|
3
3
|
|
|
4
4
|
const defaultBadgeWidth = 80;
|
|
5
|
-
const defaultBorderRadius =
|
|
5
|
+
const defaultBorderRadius = 10;
|
|
6
6
|
const und = { useNativeDriver: false };
|
|
7
7
|
const touchThreshold = 10;
|
|
8
8
|
|