Search code examples
windowscordovaxamluwpcordova-plugins

Create a Cordova UWP Plugin with a UIElement


Currently, we have a Cordova plugin and a UWP Class library. The library is using native UIElements for different UI workflows. Is there a way to display those UIElements? I read, that XAML views can't be displayed. Is there a workaround somehow?


Solution

  • Cordova is using the WebViews. So, we just have the WebView environment. But yes, somehow use the XAML view, or communicating with it.

    Yes. Cordova is using the WebViews in Android and IOS, but not in Cordova UWP. The low level of Cordova UWP actually is using javascript. The XAML view also is not available. So, your requirement is impossible.