React Native Dynamically Change Static navigationOptions Value on Button Click iOS Android

React Native activity(React Navigation) structure has its own Static navigationOptions, which is used set Activity action bar background color, title text color and title text itself and some style options. But the both are by default set only statically once in react native application and sometimes application developer needs to update them dynamically. So in this […]

React Native Swipe Down Pull to Refresh ListView Using RefreshControl iOS Android Example Tutorial

RefreshControl control component of react native is used with refreshControl={} prop of ListView, This component will allow us to add Swipe Down Pull to again update JSON data functionality. RefreshControl has its own progress loading indicator which shows automatically when application use swipe down his finger on mobile phone screen and after releasing the finger it will […]

React Native Warning Failed child context type: Invalid child context ‘virtualizedCell.cellKey’ Solve Error in FlatList iOS Android

The warning message error Warning : Failed child context type: Invalid child context ‘virtualizedCell.cellKey’ of type ‘number’ supplied to ‘CellRenderer’, expected ‘string’ is one of the most common error in FlatList component in react native. This error is mostly comes with the newly build react native projects because after some modifications we should use virtualizedCell.cellKey should be […]