Hello, Do you know if it possible to correct position of the input of the header-searchbar with additional Left button?
Thank you,
lastest
Left side of input near 'back' button
screenshot
<Header searchBar>
<Left>
<Button transparent onPress={() => this.props.navigation.navigate('Recommended')}>
<Icon name="arrow-back" />
</Button>
</Left>
<Item>
<Input placeholder={this.props.search} onChangeText={(x) => this.props.handleSearch(x)} />
<Icon name="search" />
</Item>
</Header>

android (IOS - did not check)
@inv2004 you can modify the styles of the components <Left/> or <Item/> to place search near back button
Closing this issue due to no response
<Header searchBar>
<Left style={{flex: null}}>
<Button transparent onPress={() => this.props.navigation.navigate('Recommended')}>
<Icon name="arrow-back"/>
</Button>
</Left>
<Item>
<Input placeholder="Search User"/>
<Icon name="search"/>
</Item>
</Header>
Most helpful comment