svelte-native
svelte-native copied to clipboard
Svelte controlling native components via Nativescript
is this project dead ? is there any plane to continue it ?
Using svelte's standard dispatch seems to wrap the `detail` field within another `detail`. ## `Inner.svelte`: ```jsx import { createEventDispatcher } from 'svelte' const dispatch = createEventDispatcher(); // at some point,...
Svelte and NativeScript use PascalCase for components by convention. But Svelte Native uses camelCase and is inconsistent with these. While not a big deal, consistency would make it feel more...
When I create a default new Nativescript svelte application: ns create blankapp --svelte cd blankapp && ns debug android I get a warning: WARNING: You should add "svelte" to the...
It seems that Labels are missing typing for `maxLines` property and that might be the case for all views that support it. 
Only the `on:itemTap` event is documented on the Svelte Native website currently. It'd be good to document these other events too, especially because Svelte Native's property of`on:itemLoading` is inconsistent with...
In the NativeScript Preview App, there are Examples of layouts (in the section: 'RootLayout') with demos of key UI elements: Bottom Sheet, Mini Bottom Sheet, Custom Modal, Snackbar, Sidebar. I...
I noticed that Svelte's conditional classes like `class:selected={$foo === 'abc'}` are not supported. Using this causes a build error. I've worked around this pretty easily using: `class={"foo bar" + (isSelected...
New Versions of Nativescript `ns create --svelte` ship NS v8.6.1 but `svelte-native` requires `
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,...