Usage
All web view features can be accessed through WebView class. Before using it, we need to import the namespace.
using VoxelBusters.CoreLibrary;
using VoxelBusters.EssentialKit;
Once after importing the namespace, for getting the events fired from Web View, it's required to register to the events first.
private void OnEnable()
{
// register for events
WebView.OnShow += OnWebViewShow;
WebView.OnHide += OnWebViewHide;
WebView.OnLoadStart += OnWebViewLoadStart;
WebView.OnLoadFinish += OnWebViewLoadFinish;
}