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
Copy file name to clipboardexpand all lines: content/tutorials/build-a-master-detail-app-with-svelte.md
+7-7
Original file line number
Diff line number
Diff line change
@@ -303,7 +303,7 @@ Next, add the `ListView` component:
303
303
304
304
<script>
305
305
// Add this 👇
306
-
import { Template } from 'svelte-native/components'
306
+
import { Template } from '@nativescript-community/svelte-native/components'
307
307
import { FlickService } from '../services/FlickService'
308
308
309
309
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
394
394
</page>
395
395
396
396
<script>
397
-
import { Template } from 'svelte-native/components'
397
+
import { Template } from '@nativescript-community/svelte-native/components'
398
398
import { FlickService } from '../services/FlickService'
399
399
400
400
let flicks = FlickService.getInstance().getFlicks()
@@ -421,7 +421,7 @@ Let's start with creating the file for our details page with the following conte
421
421
422
422
### Setup navigation from home to details component
423
423
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:
425
425
426
426
```xml{42,46,51-56}
427
427
<!-- app/pages/Home.svelte -->
@@ -465,8 +465,8 @@ We will be using the `navigate` function from `svelte-native` class to navigate
465
465
466
466
<script>
467
467
// 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'
470
470
import { FlickService } from '../services/FlickService'
471
471
// Add this 👇
472
472
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
532
532
</page>
533
533
534
534
<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'
537
537
import { FlickService } from '../services/FlickService'
0 commit comments