Tell us which versions you are using:
You may pass navBar property and render whatever you want for whole nav bar. Or you could pass left /right to render left/right Buttons
can we pass 2 images in navBar property for 2 right buttons
how can I add 2 right buttons to this or how can I use a custom navBar instead
this is my code :
`import React from 'react';
import { Scene, Router } from 'react-native-router-flux';
import mainScreen from './components/mainScreen';
import challengeScreen from './components/challengeScreen';
const RouterComponent = () => {
return (
leftButtonImage={require('./components/Images/bg_inner.png')} headerTintColor="white"
/>
);
};
export default RouterComponent;
`
There is no such option. You may submit PR to support it, like passing right as array for buttons. But it is better just to put two button inside right
@aksonov
how can we use navBar property to add multiple buttons is there any example or links for that I want to add a custom image as a back button and add 2 more custom images as right buttons
hey I sorted out that issue,
In my Router.js file, I created a navBar property and gave it my NavBar.js file to it like navBar={NavBar} and inside my NavBar.js file I have customized the buttons that I needed on both left and right sides
hope this might help someone
and thanks @aksonov
Hi, I am Ito,
Please provide me your result(router.js).
It would be a great help to me
@adarshTS I tried something similar but the navigation bar would not render. Did you do something special in the Router.js to get the custom navbar to render?
@wkwyatt I did this : <Scene
key="screen2" component={challengeScreen} navTransparent={1}
navBar={NavBar}
/> in the Router.js file where NavBar is the custom navbar that I created and don't forget to import import NavBar from './components/NavBar';
Thanks 👍🏽 I got it working!
On Mar 2, 2018 11:33 PM, "Adarsh Sreeram" notifications@github.com wrote:
@wkwyatt https://github.com/wkwyatt I did this :
component={challengeScreen} navTransparent={1} navBar={NavBar} /> in the
Router.js file where NavBar is the custom navbar that I created and don't
forget to import import NavBar from './components/NavBar';—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
https://github.com/aksonov/react-native-router-flux/issues/2125#issuecomment-370117194,
or mute the thread
https://github.com/notifications/unsubscribe-auth/AMvu5J1ffyV37hFA1hB1mEW9isbUp0Tlks5tah0HgaJpZM4OlIsE
.
V4, I just put my two buttons in a View and applied flexDirection row style on them and that worked for me.
let navButtons = <View style={{flexDirection: "row"}}>
<Button icon transparent onPress={this.search}>
<Icon name="search"></Icon>
</Button>
<Button icon transparent onPress={this.showCart}>
<Icon name="cart"></Icon>
</Button>
</View>
Most helpful comment
V4, I just put my two buttons in a View and applied flexDirection row style on them and that worked for me.
let navButtons = <View style={{flexDirection: "row"}}> <Button icon transparent onPress={this.search}> <Icon name="search"></Icon> </Button> <Button icon transparent onPress={this.showCart}> <Icon name="cart"></Icon> </Button> </View>