Tell us which versions you are using:
I am wondering if it is possible to have a logo (image file) in the Nav bar in place of titles? I would like the Logo to persist over all pages.
just use renderTitle={() => <Title/>}. See https://github.com/aksonov/react-native-router-flux/issues/1027 , https://github.com/aksonov/react-native-router-flux/issues/863
<Scene key="Demo"
component={Views.Demo}
titleStyle={titleStyle}
getSceneStyle={getSceneStyle}
navigationBarStyle={navStyle}
NavigationBarBackgroundImage = {bgimage}
renderRightButton={(e) => <RightButton />}
renderLeftButton={(e) => <RightButton />}>
</Scene>
Most helpful comment
just use
renderTitle={() => <Title/>}. See https://github.com/aksonov/react-native-router-flux/issues/1027 , https://github.com/aksonov/react-native-router-flux/issues/863