Tks dude! I will read this part of doc to learn more.

Latest posts made by SidneiJSilva
-
RE: Cordova best practices to do light forms with q-input
-
Cordova best practices to do light forms with q-input
Hy everyone! I would like know wich best practices to make a light form in quasar. My form has a lot of q-input and when I build app with cordova, the page become heavy and scrool become slow. My alternative was always use the native input from HTML, but anyone know a different way to do a form more light using quasar components?
Tks a lot!
-
RE: Access external links with WKWebView (OpenURL)
The most actual information that I found is in https://cordova.apache.org/news/2018/08/01/future-cordova-ios-webview.html
Here say that WKWEBVIEW has a many of limitations, such as: "XmlHttpRequests don’t work, because of Cross-Origin Resource Sharing issue (CORS). "
It’s still not working?
-
Access external links with WKWebView (OpenURL)
I’m having trouble accessing external links when I make the APP for IOS.
My APP pulls the list of posts from Facebook of my client and the behavior of the APP by default would be to open the post page when I click on it.
When I add the Ionic WebView or Cordova WKWebView plugin, these URLs do not open.
I am using Quasar’s OpenURL to do this.
I have already researched a lot on the subject and I would like to know if there is any solution to this situation.
lines added to XML:
XML using IONIC WEBVIEW:
<preference name = “iosScheme” value = “httpsionic” />
<preference name = “ScrollEnabled” value = “true” />XML using CORDOVA WKWEBVIEW
<feature name = “CDVWKWebViewEngine”>
<param name = “ios-package” value = “CDVWKWebViewEngine” />
</feature><preference name = “CordovaWebViewEngine” value = “CDVWKWebViewEngine” />