Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 | import React from 'react';
import { View, Text, StyleSheet, TouchableOpacity } from 'react-native';
import { Ionicons } from '@expo/vector-icons';
import { router } from 'expo-router';
import { AppColors, FontSizes, Spacing } from '@/constants/theme';
interface PageHeaderProps {
title: string;
onBack?: () => void;
rightElement?: React.ReactNode;
}
export function PageHeader({ title, onBack, rightElement }: PageHeaderProps) {
const handleBack = () => {
if (onBack) {
onBack();
} else {
router.back();
}
};
return (
<View style={styles.header}>
<TouchableOpacity style={styles.backButton} onPress={handleBack}>
<Ionicons name="chevron-back" size={28} color={AppColors.primary} />
</TouchableOpacity>
<Text style={styles.title}>{title}</Text>
<View style={styles.rightContainer}>
{rightElement || <View style={styles.placeholder} />}
</View>
</View>
);
}
const styles = StyleSheet.create({
header: {
flexDirection: 'row',
alignItems: 'center',
justifyContent: 'space-between',
paddingHorizontal: Spacing.sm,
paddingVertical: Spacing.md,
backgroundColor: AppColors.background,
borderBottomWidth: 1,
borderBottomColor: AppColors.border,
},
backButton: {
width: 44,
height: 44,
justifyContent: 'center',
alignItems: 'center',
},
title: {
flex: 1,
fontSize: FontSizes.lg,
fontWeight: '600',
color: AppColors.textPrimary,
textAlign: 'center',
},
rightContainer: {
width: 44,
alignItems: 'flex-end',
},
placeholder: {
width: 44,
},
});
|