Restart/Reset Current Screen in React Native, Refresh Previous Screen after Going Back in React Navigation, React Native Get Current Date Time | Use of Moment for Date Time, React Native Geolocation – To Get the Current Location in React Native, Call GraphQL Query, Mutation and Subscription, Call Functions of Other Class From Current Class, New Fast Refresh Feature in React Native 0.61, Drag and Drop Tool for Flex Layout Designing. Fast Refresh is a React Native feature that allows you to get near-instant feedback for changes in your React components. class MyScreen extends Component { constructor(props) { super(props) this.state = { lastRefresh: Date(Date.now()).toString(), } this.refreshScreen = this.refreshScreen.bind(this) } refreshScreen() { this.setState({ lastRefresh: Date(Date.now()).toString() }) } render() { return ( My Screen Last Refresh: {this.state.lastRefresh}