halfnelson

Results 49 comments of halfnelson

For the "pull to refresh" feature, I think RadListView has it, or you could try this plugin https://www.npmjs.com/package/@nstudio/nativescript-pulltorefresh. For LongPress, You could put the longpress event on the item cell...

It might be a weird cache with nativescript preview? I tried the repl (android) and apart from having to change the svelte version in the url to 3.24.1, it worked...

I couldn't reproduce this. in `App.svelte`: ```svelte navigate({ page: NextPage, props: { navProp1: "Hi from parent" } })} > ``` in `NextPage.svelte` ``` export let navProp1 = "default" Child page...

It looks like the valid values look like either `"auto"` or "40dip" or "40px" or "40" (where 40 is some number)

I'm not sure. you can just grab the generated JS from inside the platforms folders. But the current webpack build is a bit involved and I don't fully understand it.

This is a symptom of the svelte native preprocessor not running, it replaces ALL bind calls in the source. Is it part of your svelte.config.js? On Sat, 25 Sep 2021,...

I would prefer `basicdom` to have no knowledge of nativescript, hence the logger injection. We could use the logger's enabled property instead, but I am having trouble seeing a perf...

Good idea. Maybe in a FAQ section or something. The ones off the top of my head are bind:clientWidth|height and or i'll have to go through the svelte docs and...