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
+14 -11
View File
@@ -12,6 +12,7 @@ export default ({
onBackPressed = null,
containerStyle = {},
headerTitleStyle = {},
hideBackButton = false,
}) => {
return (
<View
@@ -26,17 +27,19 @@ export default ({
]}
>
<View style={{ flex: 1 }}>
<Pressable onPress={() => onBackPressed?.() || goBack()}>
<Image
source={icons.chevronDown}
style={[
Style.iconSmall,
Style.mirrorHorizontal,
{ transform: [{ rotate: "90deg" }] },
]}
resizeMode="contain"
/>
</Pressable>
{!hideBackButton && (
<Pressable onPress={() => onBackPressed?.() || goBack()}>
<Image
source={icons.chevronDown}
style={[
Style.iconSmall,
Style.mirrorHorizontal,
{ transform: [{ rotate: "90deg" }] },
]}
resizeMode="contain"
/>
</Pressable>
)}
</View>
<Motion.Text