feature
deksripsi: - merapikan folder profile - Issu: Drawer
This commit is contained in:
@@ -58,7 +58,9 @@ DrawerCustomProps) {
|
||||
<View
|
||||
style={styles.overlay}
|
||||
pointerEvents="auto"
|
||||
onTouchStart={closeDrawer}
|
||||
onTouchStart={() => {
|
||||
setTimeout(closeDrawer, 0);
|
||||
}}
|
||||
/>
|
||||
|
||||
{/* Custom Bottom Drawer */}
|
||||
|
||||
16
components/_ShareComponent/BackButton.tsx
Normal file
16
components/_ShareComponent/BackButton.tsx
Normal file
@@ -0,0 +1,16 @@
|
||||
import { Ionicons } from "@expo/vector-icons";
|
||||
import { MainColor } from "@/constants/color-palet";
|
||||
import { router } from "expo-router";
|
||||
|
||||
const BackButton = () => {
|
||||
return (
|
||||
<Ionicons
|
||||
name="arrow-back"
|
||||
size={20}
|
||||
color={MainColor.yellow}
|
||||
onPress={() => router.back()}
|
||||
/>
|
||||
);
|
||||
};
|
||||
|
||||
export default BackButton;
|
||||
Reference in New Issue
Block a user