import { View, TextInput, StyleSheet, TouchableOpacity } from "react-native"; import { useTranslation } from "react-i18next"; import { Ionicons } from "@expo/vector-icons"; import { colors } from "@/theme/colors"; export default function SearchSection() { const { t } = useTranslation(); return ( {/* Icône de recherche */} {/* Champ de saisie */} {/* Optionnel: Petit séparateur + Icône Filtre pour le look Premium */} ); } const styles = StyleSheet.create({ container: { paddingHorizontal: 20, paddingBottom: 16, paddingTop: 4, }, searchWrapper: { flexDirection: "row", alignItems: "center", backgroundColor: "#F5F7F9", // Un gris bleuté plus frais que neutral-200 borderRadius: 100, // On garde ton style "full" paddingHorizontal: 16, height: 52, // Hauteur standardisée pour le tactile borderWidth: 1, borderColor: "#EAECEF", }, searchIcon: { marginRight: 10, }, input: { flex: 1, fontSize: 15, fontWeight: "500", color: colors.neutral[900], // Évite le décalage de texte sur Android paddingVertical: 0, height: "100%", }, filterButton: { flexDirection: "row", alignItems: "center", paddingLeft: 12, }, divider: { width: 1, height: 20, backgroundColor: "#E2E4E7", marginRight: 12, }, });