Allows users to input a specific product name and define price range limits, subsequently retrieving relevant Google search results containing pricing information and associated links.
Key Features:
User Input:
Product Name (keyword): Users can input the name of the product they wish to compare prices for. The TextInput element is configured to capture and store this input in the keyword state.
Price Range Limits (fromValue and toValue): The component includes two additional TextInput elements to set minimum and maximum price limits. Users can specify a range within which they want to compare prices.
Search Trigger:
"GO!" Button: A responsive button (TouchableOpacity) labeled "GO!" triggers the search operation when pressed. The search is activated only when specific conditions are met, such as a minimum length requirement for the product name and the button's active status.
Search Results Display:
FlatList for Products (FlatList): The component utilizes a FlatList to display search results, including pricing information and relevant links. The displayed list is dynamic and updates based on the user's search criteria.
Custom Item Renderer (SearchItem): Each item in the search result list is rendered using a custom component (SearchItem). This component is responsible for presenting individual product entries with details such as price and link.
Error Handling:
Product Not Found Message: In cases where the search yields no results, a custom message is displayed using a styled component (HeaderTextExample). Users are informed that the product was not found.
Styling and User Interface:
The component incorporates styling elements to enhance the user interface, providing an aesthetically pleasing and user-friendly experience.