Hello,
This is my code for displaying menu button for navigation drawer.
const MenuButton = props =>{
return (
<View>
<Header>
<Left>
<Button transparent >
<Icon name='menu' onPress = {props.onPress}/>
</Button>
</Left>
</Header>
</View>
);
}
On ios, its working fine but on Android, button is moved near to mid as in the screenshot. I have attached screenshot as well. Please help me.

@grhashminxb Closing this issue since it does not follow issue template guidelines
also that, if you include <Left> component, then you should include the other counterparts to place the Left component appropriately
<Header>
<Left>
<Button transparent >
<Icon name='menu'/>
</Button>
</Left>
<Body />
<Right />
</Header>
@SupriyaKalghatgi I am sorry I didn't know about template but your suggestion has resolved this issue.
Thanks
Most helpful comment
also that, if you include
<Left>component, then you should include the other counterparts to place the Left component appropriately