You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Inside index.js that belongs to react-native-navbar, there is an if statement that is not being triggered when a react component is passed through "leftButton" prop.
At any given time, data._isReactElement is not recognized. There is chance that it got deprecated after RN 0.13 (facebook/react#3220 and facebook/react#3473).
// from getTitleElement(data){if(data._isReactElement){return<Viewstyle={styles.customTitle}>{data}</View>;}//togetTitleElement(data){if(!!data.props){return<Viewstyle={styles.customTitle}>{data}</View>;}
Inside index.js that belongs to react-native-navbar, there is an if statement that is not being triggered when a react component is passed through "leftButton" prop.
At any given time, data._isReactElement is not recognized. There is chance that it got deprecated after RN 0.13 (facebook/react#3220 and facebook/react#3473).
Any workaround for this?
The text was updated successfully, but these errors were encountered: