my webview show blank page
this is my Activity Class.
class AboutFragment : BaseGreenHCMFragment() {
override val layoutId = R.layout.fragment_about
override fun setupData() {}
override fun setupView() {
val mWebView: WebView? = view?.findViewById(R.id.webviewdaum) as WebView
mWebView?.loadUrl("greenhcm.com/")
val webSettings = mWebView?.getSettings()
webSettings?.setJavaScriptEnabled(true)
// Force links and redirects to open in the WebView instead of in a browser
//mWebView?.setWebViewClient(WebViewClient())
}
}