follow users

This commit is contained in:
2025-08-29 14:11:55 +02:00
parent 0699ac9ea8
commit 5473beb988
6 changed files with 229 additions and 55 deletions
@@ -6,10 +6,15 @@ import BorderGradient from "../../../components/BorderGradient/BorderGradient";
import { BlurView } from "expo-blur";
import { FONT_FAMILY } from "../../../styles/Fonts";
const ResearchHeader = ({ onPress, selected }) => {
const ResearchHeader = ({ onPress, selected, searchValue = "", onChangeSearch = () => {} }) => {
return (
<View style={{ gap: 12 }}>
<SearchBar />
<SearchBar
textInputProps={{
value: searchValue,
onChangeText: onChangeSearch,
}}
/>
<View
style={{
...Style.containerRow,