Skip to content

Commit 8cc581b

Browse files
committed
#3 PR Merged with a little bit changes
1 parent 8e42bdf commit 8cc581b

File tree

3 files changed

+4
-6
lines changed

3 files changed

+4
-6
lines changed

example/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"react-native": "0.61.2",
1616
"react-native-androw": "0.0.33",
1717
"react-native-dynamic-vector-icons": "^0.2.1",
18-
"react-native-header-search-bar": "0.0.1",
18+
"react-native-header-search-bar": "0.1.3",
1919
"react-native-material-ripple": "^0.9.1",
2020
"react-native-vector-icons": "^6.6.0"
2121
},

lib/src/components/SearchBox/SearchBox.style.js

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
import {
2-
isAndroid
3-
} from "@freakycoder/react-native-helpers";
1+
import { isAndroid } from "@freakycoder/react-native-helpers";
42

53
export function searchBoxContainer(
64
searchBoxWidth,
@@ -13,7 +11,7 @@ export function searchBoxContainer(
1311
width: searchBoxWidth,
1412
borderRadius: searchBoxBorderRadius,
1513
backgroundColor: searchBoxBackgroundColor,
16-
height: isAndroid && 40,
14+
height: isAndroid ? 40 : null
1715
};
1816
}
1917

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-native-header-search-bar",
3-
"version": "0.1.2",
3+
"version": "0.1.3",
44
"description": "Fully customizable header search bar for React Native",
55
"keywords": [
66
"header",

0 commit comments

Comments
 (0)