I am trying to navigate from one screen to other screen inside tabbar in react native. But, I am getting following error
ButtonClickCheckFunction = () =>
If you post more code, we'll be able to better answer your question.
From the error message though, it seems like you're not properly creating the component so that the navigation
property is set. You'll need to make sure to wrap the component using the withNavigation higher order component.
export default withNavigation(MyComponent);