@nativetail/ui 0.0.4 → 0.0.6
Sign up to get free protection for your applications and to get access to all the features.
package/package.json
CHANGED
@@ -18,7 +18,7 @@ export const BottomSheet = forwardRef<ActionSheetRef, BottomSheetProps>(
|
|
18
18
|
containerClassName,
|
19
19
|
contentClassName,
|
20
20
|
children,
|
21
|
-
useBlur,
|
21
|
+
useBlur = false,
|
22
22
|
indicatorClassName,
|
23
23
|
...props
|
24
24
|
},
|
@@ -28,7 +28,7 @@ export const BottomSheet = forwardRef<ActionSheetRef, BottomSheetProps>(
|
|
28
28
|
return (
|
29
29
|
<ActionSheet
|
30
30
|
ref={ref}
|
31
|
-
containerStyle={tw.style("bg-background/
|
31
|
+
containerStyle={tw.style("bg-background/95", containerClassName)}
|
32
32
|
gestureEnabled
|
33
33
|
indicatorStyle={tw.style("bg-muted/15", indicatorClassName)}
|
34
34
|
{...props}
|
@@ -58,6 +58,10 @@ export function Input({
|
|
58
58
|
{leftElement && (
|
59
59
|
<View className="absolute left-2 bottom-2">{leftElement}</View>
|
60
60
|
)}
|
61
|
+
|
62
|
+
{rightElement && (
|
63
|
+
<View className="absolute right-2 bottom-2">{rightElement}</View>
|
64
|
+
)}
|
61
65
|
{error && <Text className="text-danger text-sm">{error}</Text>}
|
62
66
|
|
63
67
|
{isSecretToggleable && (
|