Skip to content

Commit d28ce43

Browse files
committedMar 23, 2025·
chore: use @nativescript-community/svelte-native
1 parent 75aa875 commit d28ce43

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed
 

‎content/index.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -41,13 +41,13 @@ Many popular JavaScript frameworks can be used; often referred to as _flavors_,
4141
- Angular—published under `@nativescript/angular`
4242
- Vue—published under `nativescript-vue`
4343
- React—published under `react-nativescript`
44-
- Svelte—published under `svelte-native`
44+
- Solid—published under `@nativescript-community/solid-js`
45+
- Svelte—published under `@nativescript-community/svelte-native`
4546

4647
::: tip There's more!
4748

48-
Given how NativeScript is built, new flavors can be implemented on top of it anytime. A few great examples from the community:
49+
Given how NativeScript is built, new flavors can be implemented on top of it anytime. A few more great examples from the community:
4950

50-
- [SolidJS](https://github.com/nativescript-community/solid-js)
5151
- [rEFui](https://github.com/SudoMaker/rEFui#native)
5252
- and [more with DOMiNATIVE](https://github.com/SudoMaker/dominative)
5353

‎content/tutorials/build-a-master-detail-app-with-svelte.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -303,7 +303,7 @@ Next, add the `ListView` component:
303303
304304
<script>
305305
// Add this 👇
306-
import { Template } from 'svelte-native/components'
306+
import { Template } from '@nativescript-community/svelte-native/components'
307307
import { FlickService } from '../services/FlickService'
308308
309309
let flicks = FlickService.getInstance().getFlicks()
@@ -394,7 +394,7 @@ As you can see in the image above, each card is made up of 3 components, the pre
394394
</page>
395395

396396
<script>
397-
import { Template } from 'svelte-native/components'
397+
import { Template } from '@nativescript-community/svelte-native/components'
398398
import { FlickService } from '../services/FlickService'
399399

400400
let flicks = FlickService.getInstance().getFlicks()
@@ -421,7 +421,7 @@ Let's start with creating the file for our details page with the following conte
421421

422422
### Setup navigation from home to details component
423423

424-
We will be using the `navigate` function from `svelte-native` class to navigate from our home component to the details component. In addition to the page name, we will also pass in the flick's `id` as part of the `props` object of the `navigate` function. We will use this `id` in our details component to access more information about the flick. Open `Home.svelte` and add the following:
424+
We will be using the `navigate` function from `@nativescript-community/svelte-native` to navigate from our home component to the details component. In addition to the page name, we will also pass in the flick's `id` as part of the `props` object of the `navigate` function. We will use this `id` in our details component to access more information about the flick. Open `Home.svelte` and add the following:
425425

426426
```xml{42,46,51-56}
427427
<!-- app/pages/Home.svelte -->
@@ -465,8 +465,8 @@ We will be using the `navigate` function from `svelte-native` class to navigate
465465
466466
<script>
467467
// Add this 👇
468-
import { navigate } from 'svelte-native'
469-
import { Template } from 'svelte-native/components'
468+
import { navigate } from '@nativescript-community/svelte-native'
469+
import { Template } from '@nativescript-community/svelte-native/components'
470470
import { FlickService } from '../services/FlickService'
471471
// Add this 👇
472472
import Details from './Details.svelte'
@@ -532,8 +532,8 @@ Next, let's add the tap event to the ListView items. Open `Home.svelte` and add
532532
</page>
533533
534534
<script>
535-
import { navigate } from 'svelte-native'
536-
import { Template } from 'svelte-native/components'
535+
import { navigate } from '@nativescript-community/svelte-native'
536+
import { Template } from '@nativescript-community/svelte-native/components'
537537
import { FlickService } from '../services/FlickService'
538538
import Details from './Details.svelte'
539539

0 commit comments

Comments
 (0)
Please sign in to comment.