You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi there, I am trying to use this plugin for my Svelte Native project but it always fails to get import for usage. 'ns preview' just shows message "A module has not been accepted., Failed to apply."
My code:
app.ts
import { svelteNativeNoFrame } from 'svelte-native';
import { registerNativeViewElement } from 'svelte-native/dom';
registerNativeViewElement("mapBox", () => require("@nativescript-community/ui-mapbox").MapboxView);
import App from './App.svelte';
svelteNativeNoFrame(App, {});