You can try listening for the page’s init event.
See here for more details of a case where a user had the same flickering problem:
https://community.onsen.io/topic/3568/page-beforeshow-event
You can try listening for the page’s init event.
See here for more details of a case where a user had the same flickering problem:
https://community.onsen.io/topic/3568/page-beforeshow-event
I’m not sure whether this is a quirk of Monaca Debugger (although I don’t think so) or to do with the library code you are using to load the picture. Maybe you can try one of the examples here and check if it works for your case:
https://github.com/apache/cordova-plugin-camera#sample-take-pictures-select-pictures-from-the-picture-library-and-get-thumbnails-
Can you try running your app in the Preview window in Monaca Cloud IDE and then checking the network tab of your browser’s debug tools? There you should be able to see the request and response in full.
Also, this might be relevant if you’re using Android:
https://en.docs.monaca.io/reference/power_plugins/in-app_updater#notes-on-android-9+
The tabbar is currently not written in a way that allows for dynamically added tabs. This is something that we are considering for a future release but unfortunately it is not possible right now with the plain JS version of Onsen UI.
Since you are on Pro plan, it might be easiest to open a support ticket with Monaca Support Team. They will be able to access your project and debug it. From the information you provided here it’s not possible to say what the problem is. If you need further help, please let us know.
There is nothing like this in Onsen UI as far as I know. Actually, I’m not sure what you would call this effect either. Can you tell me what app uses this effect as an example?
If the plugin variable is undefined, check the following:
The plugin is being installed during the build. You should see it in the build log.
You are accessing the plugin variable after the deviceready
event. You can make sure of this by adding an event listener and using the plugin variable in the callback function e.g.:
document.addEventListener(‘deviceready’, () => {
// call the variable here
});
clobbers
tag e.g.:<clobbers target=“FirebasePlugin” />
This means the variable is window.FirebasePlugin
.
Unfortunately it doesn’t seem there is much that can be done about it from the user-end. I meant that if you manually split the lines (so you don’t have very long lines), it shouldn’t be a problem - is that the case?
It’s specifically a setting in Monaca Cloud IDE, but I believe that it is not possible for users to set it. Is there still a problem once you split the lines?
It looks like the only editor configuration that can be done is through the Config -> Workspace Configuration page but unfortunately it doesn’t seem to include the setting you need. I think the editor used internally is Monaco (with an ‘o’) so you may be able to find some help in its documentation.