I don\'t understand why I get the following error when I use the native InAppBrowser plugin : Can\'t resolve all parameters for InAppBrowser
import { Component }
You don't need to add InAppBrowser to the providers array and you also don't need to inject it in the constructor.
InAppBrowser
Simply import it in the beginning of the page (as you did), and then use it anywhere in the code like that:
openPage() { new InAppBrowser('https://google.com', '_system'); }