diff --git a/README.md b/README.md index 21fe8214f..8b9e1fdfc 100644 --- a/README.md +++ b/README.md @@ -47,6 +47,19 @@ npm i react-native-router-flux --save | defaultRoute | string | optional | Defines which route to go to if this route is used as a tab and the tab is clicked on when the tab is already selected | | hideNavBar | bool | false | hides navigation bar for this route | | hideTabBar | bool | false | hides tab bar for this route (if built-in TabBar component is used as footer for parent Router, check Example)| +| navigationBarStyle | View style | | optional style override for the navigation bar | +| titleStyle | Text style | | optional style override for the title element | +| renderTitle | Closure | | optional closure to render the title element | +| barButtonIconStyle | Image style | | optional style override for icon buttons (e.g. back icon) | +| leftTitle | string | | optional string to display on the left if the previous route does not provide `renderBackButton` prop. `renderBackButton` > `leftTitle` > | +| renderLeftButton | Closure | | optional closure to render the left title / buttons element | +| renderBackButton | Closure | | optional closure to render back text or button if this route happens to be the previous route | +| leftButtonStyle | View style | | optional style override for the container of left title / buttons | +| leftButtonTextStyle | Text style | | optional style override for the left title element | +| rightTitle | string | | optional string to display on the right. `onRight` must be provided for this to appear. | +| renderRightButton | Closure | | optional closure to render the right title / buttons element | +| rightButtonStyle | View style | | optional style override for the container of right title / buttons | +| rightButtonTextStyle | Text style | | optional style override for the right title element | ##### Schema: