cdslibrary 1.0.11 → 1.0.12
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.
|
@@ -26,7 +26,6 @@ export const CDSBottomSheet = ({
|
|
|
26
26
|
const [childHeight, setChildHeight] = useState(0);
|
|
27
27
|
const handleLayout = (event) => {
|
|
28
28
|
const { width } = event.nativeEvent.layout;
|
|
29
|
-
console.log("Ancho:", width, "Alto:", height);
|
|
30
29
|
setChildHeight(width); // Guardamos el ancho en el estado
|
|
31
30
|
};
|
|
32
31
|
|
|
@@ -27,7 +27,6 @@ export const Onboarding = () => {
|
|
|
27
27
|
const viewConfig = useRef({ viewAreaCoveragePercentThreshold: 50 }).current;
|
|
28
28
|
|
|
29
29
|
const scrollX = useRef(new Animated.Value(0)).current;
|
|
30
|
-
console.log(scrollX)
|
|
31
30
|
const slidesRef = useRef(null);
|
|
32
31
|
|
|
33
32
|
const { isDarkMode } = useTheme();
|