Skip to content

Commit

Permalink
#3 PR Merged with a little bit changes
Browse files Browse the repository at this point in the history
  • Loading branch information
WrathChaos committed Nov 27, 2019
1 parent 8e42bdf commit 8cc581b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 6 deletions.
2 changes: 1 addition & 1 deletion example/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"react-native": "0.61.2",
"react-native-androw": "0.0.33",
"react-native-dynamic-vector-icons": "^0.2.1",
"react-native-header-search-bar": "0.0.1",
"react-native-header-search-bar": "0.1.3",
"react-native-material-ripple": "^0.9.1",
"react-native-vector-icons": "^6.6.0"
},
Expand Down
6 changes: 2 additions & 4 deletions lib/src/components/SearchBox/SearchBox.style.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
import {
isAndroid
} from "@freakycoder/react-native-helpers";
import { isAndroid } from "@freakycoder/react-native-helpers";

export function searchBoxContainer(
searchBoxWidth,
Expand All @@ -13,7 +11,7 @@ export function searchBoxContainer(
width: searchBoxWidth,
borderRadius: searchBoxBorderRadius,
backgroundColor: searchBoxBackgroundColor,
height: isAndroid && 40,
height: isAndroid ? 40 : null
};
}

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-native-header-search-bar",
"version": "0.1.2",
"version": "0.1.3",
"description": "Fully customizable header search bar for React Native",
"keywords": [
"header",
Expand Down

0 comments on commit 8cc581b

Please sign in to comment.