Dimitris-Rafail Katsampas
Dimitris-Rafail Katsampas
## PR Checklist - [x] The PR title follows our guidelines: https://github.com/NativeScript/NativeScript/blob/master/tools/notes/CONTRIBUTING.md#commit-messages. - [x] There is an issue for the bug/feature this PR is for. To avoid wasting your time,...
In android, when you navigate to a page with a nested pager, its items will all render at the same time even though the rest of pager items aren't visible....
It seems that Labels are missing typing for `maxLines` property and that might be the case for all views that support it. 
Right now, ListView items are nested inside `StackLayout`. That is because of the strange behaviour of core which nests `ProxyViewContainer` inside `StackLayout` in the case of lists. With this PR,...
Right now, parser will throw even in the case of `:is()` pseudo-class that contains an invalid selector (even if there are other valid selectors). That pseudo-class apparent accepts a forgiving...
If one modifies `package.json` and hot reload attempts to compile, it will throw the following error: ``` ERROR in ./src/views/Map.svelte (./src/views/Map.svelte.1.css!=!./node_modules/svelte-loader/index.js?cssPath=/home/dev/workdir/clients/web_v2/src/views/Map.svelte.1.css!./src/views/Map.svelte) Module build failed (from ./node_modules/mini-css-extract-plugin/dist/loader.js): ModuleBuildError: Module build failed...
Even though I don't use firebase ads, google complains about my app using admob sdk.  I use auth and messaging modules. I understand messaging module uses...
It seems that if I draw something on canvas using a timeout, the previous drawing will be erased. Seems to occur on android and ios (devices only) Samples to test:...
NativeScript Core already contains a polyfill for XMLHttpRequest here: https://github.com/NativeScript/NativeScript/blob/main/packages/core/xhr/index.ts Canvas-polyfill uses its own polyfill: https://github.com/NativeScript/canvas/blob/master/packages/canvas-polyfill/async/xhr/TNSXMLHttpRequest.ts This breaks functionality for libraries that use default NS polyfill (e.g. axios).
##### Description of change Right now, property event handlers like `onclick` can be triggered for non-intaractive display objects. In the case of the root display object, listeners will be called...