This method to create the webview and display it on screen.
{
GamebaseRequest.Webview.GamebaseWebViewConfiguration configuration = new GamebaseRequest.Webview.GamebaseWebViewConfiguration();
configuration.title = "Title";
configuration.orientation = -1;
configuration.colorR = 128;
configuration.colorG = 128;
configuration.colorB = 128;
configuration.colorA = 255;
configuration.barHeight = 40;
configuration.buttonVisible = true;
configuration.url = "http://www.naver.com";
Gamebase.Webview.ShowWebView(configuration);
}