I'm using the WebView to display an arcgis web app inside an window:
import QtQuick 2.5
import QtQuick.Controls 2.1
import QtQuick.Window 2.0
import QtWebEngine 1.1
import ArcGIS.AppFramework 1.0
import ArcGIS.AppFramework.Controls 1.0
import ArcGIS.AppFramework.WebView 1.0
App { id: app
width: 400
height: 640
visible: true
WebView{ anchors.fill: parent
url:"https://pcrj.maps.arcgis.com/apps/StoryMapCrowdsource/index.html?appid=5d132f5efea4466f84dd79bef539b9a3"
}
}
Inside that App window I can load the page properly, but external pop-up it is not working.
How should I approach to handle external links like facebook auth, twitter, etc?