Gopinath Kaliappan
Gopinath Kaliappan

Reputation: 7359

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();

Upvotes: 0

Views: 1380

Answers (1)

Hardik Vaghani
Hardik Vaghani

Reputation: 2173

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

Upvotes: 1

Related Questions