mytrip.tsx import React from 'react' import { View, Text, TouchableOpacity, Image } from 'react-native' import { useNavigation } from '@react-navigation/native' import { ScrollView } from 'react-native-gesture-handler' import { SearchBar } from '../../components' import { styles } from './styles' import TripComponent from './TripComponent' const mytripScreen = () => { const navigation = useNavigation() const [trips, setTrips] = React.useState(MYTRIPS) const searchTrips = (t: string) => { const newData = MYTRIPS.filter(function (item) { const itemData = item.title ? item.title.toUpperCase() : ''.toUpperCase() const textData = t.toUpperCase() return itemData.indexOf(textData) > -1 }) setTrips(newData) } return ( <View style={styles.mytripMainContainer}> <View style={styles.mytripInnerContainer...
A Passionate full stack developer with 7 years of amazing experience in full stack application development and expertise in technologies like React Native, NextJS, ReactJS, Codeigniter, PHP , NodeJs. He has huge craze in learning new things about technologies and constantly shares his knowledge with others.