Beispiel #1
0
 private void SetWebView()
 {
     if (APIUser.GetUserInformation() != null)
     {
         string url = contentwebView.GetComponent <UniWebView>().url + "?username=" + APIUser.GetUserInformation().info.userName;
         contentwebView.GetComponent <UniWebView>().url = url;
         contentwebView.GetComponent <UniWebView>().Load();
     }
     contentwebView.GetComponent <UniWebView>().insets = new UniWebViewEdgeInsets(aTop, aLeft, aBottom, aRight);
 }
Beispiel #2
0
 public void ShowDialogProfile()
 {
     DialogService.Instance.ShowDialog(new DialogInfo(APIUser.GetUserInformation()));
 }