cdslibrary 1.2.62 → 1.2.63
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.
|
@@ -79,7 +79,7 @@ const bottomSheetRender = ({
|
|
|
79
79
|
if (isVisible) {
|
|
80
80
|
// Usamos una curva Bezier suave (out-expo) que se frena al final
|
|
81
81
|
translation.value = withTiming(0, {
|
|
82
|
-
duration:
|
|
82
|
+
duration: 300,
|
|
83
83
|
easing: Easing.out(Easing.exp),
|
|
84
84
|
});
|
|
85
85
|
opacity.value = withTiming(1, { duration: 300 });
|
|
@@ -172,7 +172,7 @@ const bottomSheetRender = ({
|
|
|
172
172
|
scrollEventThrottle={16}
|
|
173
173
|
>
|
|
174
174
|
{!!description && (
|
|
175
|
-
<Text style={[theme.typography.regular.md, {
|
|
175
|
+
<Text style={[theme.typography.regular.md, { padding: theme.space.md }]}>
|
|
176
176
|
{description}
|
|
177
177
|
</Text>
|
|
178
178
|
)}
|