follow users
This commit is contained in:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user