This commit is contained in:
Philip Cesar Garay
2025-08-15 21:02:34 +08:00
parent 41636b5dbc
commit a8ebe8bcc3
39 changed files with 1436 additions and 391 deletions
+37
View File
@@ -0,0 +1,37 @@
import { View, Text } from "react-native";
import React from "react";
import ActionSheet from "react-native-actions-sheet";
import { gutters, Palette } from "../styles";
import { BlurView } from "expo-blur";
const AppActionSheet = ({ children, props }) => {
return (
<ActionSheet
containerStyle={{ backgroundColor: Palette.tran }}
gestureEnabled
indicatorStyle={{
top: 20,
width: 50,
zIndex: 2,
}}
{...props}
>
<BlurView
intensity={20}
style={{
paddingTop: 36,
paddingHorizontal: 14,
paddingBottom: gutters,
backgroundColor: Palette.glass,
borderTopLeftRadius: 20,
borderTopRightRadius: 20,
overflow: "hidden",
}}
>
{children}
</BlurView>
</ActionSheet>
);
};
export default AppActionSheet;