Files
mobile-darmasaba/components/home/headerRightHome.tsx
amel f7b8c08f20 upd: profile
Deskripsi:
- ui profile
- ui button right header
- ui alert konfirmasi

No Issues
2025-02-27 12:02:57 +08:00

15 lines
724 B
TypeScript

import { View } from "react-native"
import { router } from "expo-router"
import Feather from '@expo/vector-icons/Feather';
import { ButtonHeader } from "../buttonHeader";
import Styles from "@/constants/Styles";
export function HeaderRightHome() {
return (
<View style={[Styles.rowSpaceBetween, { width: 140 }]}>
<ButtonHeader item={<Feather name="search" size={20} color="white" />} onPress={() => { router.push('/search') }} />
<ButtonHeader item={<Feather name="bell" size={20} color="white" />} onPress={() => { router.push('/notification') }} />
<ButtonHeader item={<Feather name="user" size={20} color="white" />} onPress={() => { router.push('/profile') }} />
</View>
)
}