ordering-ui-react-native 0.12.64 → 0.12.65
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import React, { useState, useEffect } from 'react'
|
|
2
|
-
import { View, TouchableOpacity, StyleSheet } from 'react-native'
|
|
2
|
+
import { View, TouchableOpacity, StyleSheet, Platform } from 'react-native'
|
|
3
3
|
import MaterialIcon from 'react-native-vector-icons/MaterialIcons'
|
|
4
4
|
import {
|
|
5
5
|
BusinessAndProductList,
|
|
@@ -325,6 +325,7 @@ const styles = StyleSheet.create({
|
|
|
325
325
|
export const BusinessProductsListing = (props: BusinessProductsListingParams) => {
|
|
326
326
|
const businessProductslistingProps = {
|
|
327
327
|
...props,
|
|
328
|
+
isForceSearch: Platform.OS === 'ios',
|
|
328
329
|
UIComponent: BusinessProductsListingUI
|
|
329
330
|
}
|
|
330
331
|
return (
|