Here is my code for onBackPressed
if(webview!!.canGoBack()){
webview!!.goBack()
}else{
super.onBackPressed()
}
when on back clicked the previous page is loading but the content not getting updated (not refreshing). Do we have option to refresh 'on back' in WebView? Or any alternate solution?