Rene Hampölz

Results 53 comments of Rene Hampölz

It's not an optimal solution, but I'm using ```js locoScoll.stop(); locoScoll.scrollTo(locoScoll.scroll.instance.scroll.y, { duration: 1 }); ``` as a workaround.

The same problem exists for plugins with electron support. `CapacitorElectronPlugins.MyPlugin` works fine, but `Capacitor.Plugins.MyPlugin` returns `undefined`. If the packed version of the plugin is installed (with `npm pack` and `npm...

@matallui You can find a small example in the `createplugin`-documentation: https://github.com/capacitor-community/electron/blob/main/docs-site/docs/creatingplugins.md

@matallui your code looks good to me. If you're using Capacitor with the bundled Capacitor-Core you can access your plugin with `Capacitor.Plugins.yourPlugin` or on Electron with `CapacitorCustomPlatform.plugins.yourPlugin`. (`Capacitor` and `CapacitorCustomPlatform`...

Unfortunately its not possible to upgrade the NodeJS engine (for now) because the creator of nodejs-mobile doesn't maintain the project anymore. I plan to fork the repository this summer or...

Good News! Recently two new PRs were opend in the nodejs-mobile repo to bump the node version to v16 and v18: - https://github.com/nodejs-mobile/nodejs-mobile/pull/3 - https://github.com/nodejs-mobile/nodejs-mobile/pull/7 Once the PRs are merged...

Hey @realrecordzLab! Do I understand correctly, your app (I guess it's an android app) builds correctly without the Capacitor-NodeJS plugin, but as soon as you add this plugin to your...

Hey @sce9sc, thanks for the report. This is indeed an issue that the nodejs engine takes longer to load than the web view on some devices. I'll add an event...

You're right, that would be a simple workaround. But i think it's better to integrate something like this directly into the plugin and add it to the docs and qickstart...

You can use the `--oversample 300` parameter to rasterize your PDFs at 300 DPI.