import 'react-native-gesture-handler'; import * as React from 'react'; import { useState } from 'react'; import { Alert, Button, Image, StyleSheet, Dimensions, SafeAreaView, ScrollView, TouchableOpacity } from 'react-native'; import { Text, View, } from '../Themed'; import { TextInput } from 'react-native-gesture-handler'; import { Ionicons, FontAwesome } from '@expo/vector-icons'; import { createDrawerNavigator, DrawerItemList, DrawerItem, DrawerContentScrollView } from '@react-navigation/drawer'; import { NavigationContainer } from '@react-navigation/native'; import { createStackNavigator } from '@react-navigation/stack'; import Animated, { Easing } from 'react-native-reanimated'; const Header = ({props} : {props : any}) => { const toggleDrawer = () => { //Props to open/close the drawer props.toggleDrawer(); }; return ( 0 ); } const MainSeach = () => { return ( { Alert.alert('aaaaaaaaaa') }} name="search-outline" size={26} /> ); } export { Header, MainSeach }; let winWidth = Dimensions.get('window').width; //full width let winHeight = Dimensions.get('window').height; //full height const styles = StyleSheet.create({ headerAll: { width: winWidth, flex: 1, }, bgNone: { backgroundColor: 'rgba(0, 0, 0, 0)', }, header: { backgroundColor: '#243a76', height: 53, display: 'flex', flexDirection: 'row', justifyContent: 'space-between', alignItems: 'center', width: winWidth, padding: 10, }, menu: { backgroundColor: '#243a76', }, iconMenu: { color: '#fff', }, headerCart: { backgroundColor: 'rgba(0,0,0,0)', position: 'relative', }, countCart: { position: 'absolute', top: -5, right: -5, zIndex: 1, width: 20, height: 20, backgroundColor: '#ffe100', borderRadius: 10, textAlign: 'center', lineHeight: 20, fontSize: 13, color: '#000', overflow: 'hidden', }, img: { height: 40, width: 100, }, boxSearch: { position: 'relative', padding: 10, backgroundColor: '#fff', width: winWidth, shadowColor: "#000", shadowOffset: { width: 0, height: 1, }, shadowOpacity: 0.18, shadowRadius: 1.00, elevation: 1, }, boxSearchBo: { position: 'relative', flexDirection: 'row', borderWidth: 1, justifyContent: 'space-between', borderStyle: 'solid', alignItems: 'center', borderRadius: 5, display: 'flex', height: 38, padding: 0, margin: 0, }, inputSearch: { width: winWidth - 65, padding: 10, paddingTop: 10, paddingBottom: 10, height: 36, margin: 0, fontSize: 14, }, buttonSearch: { width: 40, textAlign: 'center', height: 36, lineHeight: 36, }, })