import { SafeAreaView, ScrollView, StyleSheet, Text, TextInput, TouchableOpacity,
View } from 'react-native'
import React from 'react'
import { SearchIcon, Filter } from 'lucide-react-native'
const explore = () => {
return (
<SafeAreaView style={{flex: 1, backgroundColor: '#0a0a0a', justifyContent:
'center', alignItems: 'center', paddingTop: 40}}>
<View style={{width: '90%', justifyContent: 'flex-start', alignItems:
'flex-start'}}>
<Text style={{color: '#32D59E',fontSize: 26, fontWeight:
700}}>Explore</Text>
</View>
{/**Search */}
<View style={{alignItems: 'center', justifyContent: 'center',width:
'90%'}}>
<View style={{flexDirection: 'row', alignItems: 'center', gap: 20,
justifyContent: 'space-between',}}>
<View style={{backgroundColor: '#1a1a1a',width:
'80%',flexDirection: 'row', alignItems: 'center', borderWidth: 1, borderColor:
'#dddddd91', borderRadius: 10, paddingLeft: 9, marginVertical: 20}}>
<SearchIcon size={18} color={"#dddddd91"}/>
<TextInput placeholder="Search"
placeholderTextColor={'#dddddd91'} style={{color: '#fff', width: 'auto'}}/>
</View>
<TouchableOpacity style={{width: 40, height: 40, backgroundColor:
'#1a1a1a', justifyContent: 'center', alignItems: 'center', borderRadius: 10,
borderWidth: 1, borderColor: '#dddddd91'}}>
<Filter size={18} color={'#fff'}/>
</TouchableOpacity>
</View>
</View>
{/**Suggestions */}
<ScrollView style={{marginBottom: 60}}>
</ScrollView>
</SafeAreaView>
)
}
export default explore
const styles = [Link]({})