While going through the svelte-native tutorial, the running ios application crashes. I discovered that changing the app.ts file from:
import { svelteNativeNoFrame } from 'svelte-native'
import App from './App.svelte'
svelteNativeNoFrame(App as typeof SvelteComponent, {});
to:
import { svelteNative } from 'svelte-native'
import App from './App.svelte'
svelteNative(App as typeof SvelteComponent, {});
allows the app to run again, but now there is an additional actionBar (containing the app name, not the page name) on the default page.
Any help will be greatly appreciated.