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: docs/angular/your-first-app/7-live-reload.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -32,7 +32,7 @@ The Live Reload server will start up, and the native IDE of choice will open if
32
32
33
33
## Deleting Photos
34
34
35
-
With Live Reload running and the app open on your device, let’s implement photo deletion functionality. Open`tab2.page.html` and add a new click handler to each `<ion-img>` element. When the app user taps on a photo in our gallery, we’ll display an [Action Sheet](https://ionicframework.com/docs/api/action-sheet) dialog with the option to either delete the selected photo or cancel (close) the dialog.
35
+
With Live Reload running and the app open on your device, let’s implement photo deletion functionality. In your code editor (not Android Studio or Xcode), open`tab2.page.html` and add a new click handler to each `<ion-img>` element. When the app user taps on a photo in our gallery, we’ll display an [Action Sheet](https://ionicframework.com/docs/api/action-sheet) dialog with the option to either delete the selected photo or cancel (close) the dialog.
36
36
37
37
```html
38
38
<ion-colsize="6"*ngFor="let photo of photoService.photos; index as position">
Copy file name to clipboardExpand all lines: docs/developing/android.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,7 +16,7 @@ import DocsCards from '@components/global/DocsCards';
16
16
17
17
:::info Looking for the legacy Android guide?
18
18
19
-
The Developing for Android guide has officially migrated to the [Capacitor documentation for Android](https://capacitorjs.com/docs/android). If you need to access the legacy documentation, you can find it under the [legacy developing for Android guide](https://ionic-docs-o31kiyk8l-ionic1.vercel.app/docs/v6/developing/android).
19
+
The Developing for Android guide has officially migrated to the [Capacitor documentation for Android](https://capacitorjs.com/docs/android). If you need to access the legacy documentation, you can find it under the [legacy developing for Android guide](https://ionic-docs-fo03f34h5-ionic1.vercel.app/docs/v6/developing/android).
20
20
21
21
:::
22
22
@@ -30,7 +30,7 @@ The Developing for Android guide has officially migrated to the [Capacitor docum
30
30
</DocsCard>
31
31
<DocsCard
32
32
header="Developing for Android with Cordova (Legacy)"
Copy file name to clipboardExpand all lines: docs/developing/ios.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -17,7 +17,7 @@ import DocsCards from '@components/global/DocsCards';
17
17
18
18
:::info Looking for the legacy iOS guide?
19
19
20
-
The Developing for iOS guide has officially migrated to the [Capacitor documentation for iOS](https://capacitorjs.com/docs/ios). If you need to access the legacy documentation, you can find it under the [legacy developing for iOS guide](https://ionic-docs-o31kiyk8l-ionic1.vercel.app/docs/v6/developing/ios).
20
+
The Developing for iOS guide has officially migrated to the [Capacitor documentation for iOS](https://capacitorjs.com/docs/ios). If you need to access the legacy documentation, you can find it under the [legacy developing for iOS guide](https://ionic-docs-fo03f34h5-ionic1.vercel.app/docs/v6/developing/ios).
21
21
22
22
:::
23
23
@@ -31,7 +31,7 @@ The Developing for iOS guide has officially migrated to the [Capacitor documenta
Copy file name to clipboardExpand all lines: docs/react/your-first-app/7-live-reload.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -26,7 +26,7 @@ The Live Reload server will start up, and the native IDE of choice will open if
26
26
27
27
## Deleting Photos
28
28
29
-
With Live Reload running and the app is open on your device, let’s implement photo deletion functionality. Open`Tab2.tsx` then import `useState` from React and `UserPhoto` from the `usePhotoGallery` hook:
29
+
With Live Reload running and the app open on your device, let’s implement photo deletion functionality. In your code editor (not Android Studio or Xcode), open`Tab2.tsx` then import `useState` from React and `UserPhoto` from the `usePhotoGallery` hook:
import { ellipse, square, triangle } from 'ionicons/icons';
395
395
</script>
396
396
```
397
397
@@ -494,7 +494,7 @@ Nothing should be provided inside of `IonRouterOutlet` when setting it up in you
494
494
495
495
The `IonPage` component wraps each view in an Ionic Vue app and allows page transitions and stack navigation to work properly. Each view that is navigated to using the router must include an `IonPage` component.
496
496
497
-
```html
497
+
```vue
498
498
<template>
499
499
<ion-page>
500
500
<ion-header>
@@ -507,7 +507,7 @@ The `IonPage` component wraps each view in an Ionic Vue app and allows page tran
Copy file name to clipboardExpand all lines: docs/vue/performance.md
+9-9Lines changed: 9 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,7 +11,7 @@ When using `v-for` with Ionic components, we recommend using Vue's `key` attribu
11
11
12
12
By using `key` you can provide a stable identity for each loop element so Vue can track insertions and deletions within the iterator. Below is an example of how to use `key`:
13
13
14
-
```html
14
+
```vue
15
15
<template>
16
16
<ion-page>
17
17
<ion-content>
@@ -23,14 +23,14 @@ By using `key` you can provide a stable identity for each loop element so Vue ca
0 commit comments