Search code examples
androidionic-frameworkcordova-pluginsinappbrowser

How to Create Custom Inapp Browser?


Hi I want to add Some buttons over the inAppbrowser in my android application how to add here is my code

$scope.customInappbrowser = function() {

    $cordovaInAppBrowser.open('https://www.google.co.in', '_blank', options)
          .then(function(event) {
            // success
          })
          .catch(function(event) {
            // error
          });

       // window.open(v, "_system", "location=yes");
    }
$scope.customInappbrowser();

Solution

  • You can try following plugin that is already modified. cordova-plugin-themeablebrowser. You can refer its code for reference. Regards.