Skip to content

Commit b24106d

Browse files
committed
Fix typo in sfSymbol
1 parent b4d1bc6 commit b24106d

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

versioned_docs/version-7.x/native-stack-navigator.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1532,16 +1532,16 @@ Common properties:
15321532

15331533
```js
15341534
{
1535-
type: 'image',
1536-
source: require('./path/to/image.png'),
1535+
type: 'image',
1536+
source: require('./path/to/image.png'),
15371537
}
15381538
```
15391539

15401540
Or a [SF Symbols](https://developer.apple.com/sf-symbols/) name:
15411541

15421542
```js
15431543
{
1544-
type: 'sfsymbol',
1544+
type: 'sfSymbol',
15451545
name: 'heart',
15461546
}
15471547
```
@@ -1579,7 +1579,7 @@ unstable_headerRightItems: () => [
15791579
type: 'button',
15801580
label: 'Edit',
15811581
icon: {
1582-
type: 'sfsymbol',
1582+
type: 'sfSymbol',
15831583
name: 'pencil',
15841584
},
15851585
onPress: () => {
@@ -1605,7 +1605,7 @@ Supported properties when `type` is `menu`:
16051605

16061606
```js
16071607
{
1608-
type: 'sfsymbol',
1608+
type: 'sfSymbol',
16091609
name: 'trash',
16101610
}
16111611
```
@@ -1629,7 +1629,7 @@ Supported properties when `type` is `menu`:
16291629

16301630
```js
16311631
{
1632-
type: 'sfsymbol',
1632+
type: 'sfSymbol',
16331633
name: 'pencil',
16341634
}
16351635
```
@@ -1644,7 +1644,7 @@ unstable_headerRightItems: () => [
16441644
type: 'menu',
16451645
label: 'Options',
16461646
icon: {
1647-
type: 'sfsymbol',
1647+
type: 'sfSymbol',
16481648
name: 'ellipsis',
16491649
},
16501650
menu: {
@@ -1654,7 +1654,7 @@ unstable_headerRightItems: () => [
16541654
type: 'action',
16551655
label: 'Edit',
16561656
icon: {
1657-
type: 'sfsymbol',
1657+
type: 'sfSymbol',
16581658
name: 'pencil',
16591659
},
16601660
onPress: () => {
@@ -1734,4 +1734,4 @@ unstable_headerRightItems: () => [
17341734
],
17351735
```
17361736

1737-
The advantage of using this over [`headerLeft`](#headerleft) or [`headerRight`](#headerright) options is it supports features like shared background on iOS 26+.
1737+
The advantage of using this over [`headerLeft`](#headerleft) or [`headerRight`](#headerright) options is that it supports features like shared background on iOS 26+.

0 commit comments

Comments
 (0)