File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed
Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -149,6 +149,7 @@ import { ClassicHeader } from "@freakycoder/react-native-header-view";
149149| searchIcon | asset | default | set your own icon for the search one |
150150| titleTextStyle | style | default | set your own style for title text |
151151| subtitleTextStyle | style | default | set your own style for subtitle text |
152+ | searchBarStyle | style | default | set your own style for search text input container |
152153| searchInputStyle | style | default | set your own style for search text input |
153154| menuImageStyle | style | default | set your own style for hamburger menu image |
154155| menuImageSource | asset | default | set your own image instead of default hamburger menu image |
Original file line number Diff line number Diff line change @@ -46,6 +46,7 @@ class GorgeousHeader extends Component {
4646 subtitle,
4747 searchIcon,
4848 titleTextStyle,
49+ searchBarStyle,
4950 searchInputStyle,
5051 subtitleTextStyle,
5152 } = this . props ;
@@ -55,7 +56,7 @@ class GorgeousHeader extends Component {
5556 < Text style = { subtitleTextStyle || styles . subtitleTextStyle } >
5657 { subtitle }
5758 </ Text >
58- < View style = { styles . searchBarStyle } >
59+ < View style = { searchBarStyle || styles . searchBarStyle } >
5960 < Image
6061 style = { styles . searchImageStyle }
6162 source = { searchIcon || searchImage }
You can’t perform that action at this time.
0 commit comments