Skip to content

Commit f3fb0e0

Browse files
committed
docs: Uploaded better quality images/videos
1 parent 3cd824e commit f3fb0e0

File tree

8 files changed

+7
-7
lines changed

8 files changed

+7
-7
lines changed
Loading
Binary file not shown.
Binary file not shown.

versioned_docs/version-5.x/hello-react-navigation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ function App() {
5959
export default App;
6060
```
6161

62-
![Basic app using stack navigator](/assets/navigators/stack/basic_stack_nav.png)
62+
<img src="/assets/7.x/fundamentals/basicAppUsingStackNavigator.jpeg" width="300" alt="Basic app using stack navigator" />
6363

6464
If you run this code, you will see a screen with an empty navigation bar and a grey content area containing your `HomeScreen` component (shown above). The styles you see for the navigation bar and the content area are the default configuration for a stack navigator, we'll learn how to configure those later.
6565

versioned_docs/version-6.x/hello-react-navigation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ function App() {
5959
export default App;
6060
```
6161

62-
![Basic app using stack navigator](/assets/navigators/stack/basic_stack_nav.png)
62+
<img src="/assets/7.x/fundamentals/basicAppUsingStackNavigator.jpeg" width="300" alt="Basic app using stack navigator" />
6363

6464
If you run this code, you will see a screen with an empty navigation bar and a grey content area containing your `HomeScreen` component (shown above). The styles you see for the navigation bar and the content area are the default configuration for a stack navigator, we'll learn how to configure those later.
6565

versioned_docs/version-6.x/navigating.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ function HomeScreen({ navigation }) {
5252
```
5353

5454
<video playsInline autoPlay muted loop>
55-
<source src="/assets/navigators/stack/simple-details.mp4" />
55+
<source src="/assets/7.x/fundamentals/NavigateBasic.mp4" />
5656
</video>
5757

5858
Let's break this down:
@@ -100,7 +100,7 @@ Let's suppose that we actually _want_ to add another details screen. This is pre
100100
```
101101

102102
<video playsInline autoPlay muted loop>
103-
<source src="/assets/navigators/stack/stack-push.mp4" />
103+
<source src="/assets/7.x/fundamentals/navigateAgain.mp4" />
104104
</video>
105105

106106
Each time you call `push` we add a new route to the navigation stack. When you call `navigate` it first tries to find an existing route with that name, and only pushes a new route if there isn't yet one on the stack.

versioned_docs/version-7.x/hello-react-navigation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ export default function App() {
118118
</TabItem>
119119
</Tabs>
120120

121-
![Basic app using stack navigator](/assets/navigators/stack/basic_stack_nav.png)
121+
<img src="/assets/7.x/fundamentals/basicAppUsingStackNavigator.jpeg" width="300" alt="Basic app using stack navigator" />
122122

123123
If you run this code, you will see a screen with an empty navigation bar and a grey content area containing your `HomeScreen` component (shown above). The styles you see for the navigation bar and the content area are the default configuration for a stack navigator, we'll learn how to configure those later.
124124

versioned_docs/version-7.x/navigating.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ export default function App() {
8282
```
8383

8484
<video playsInline autoPlay muted loop>
85-
<source src="/assets/navigators/stack/simple-details.mp4" />
85+
<source src="/assets/7.x/fundamentals/NavigateBasic.mp4" />
8686
</video>
8787

8888
Let's break this down:
@@ -213,7 +213,7 @@ export default function App() {
213213
```
214214

215215
<video playsInline autoPlay muted loop>
216-
<source src="/assets/navigators/stack/stack-push.mp4" />
216+
<source src="/assets/7.x/fundamentals/navigateAgain.mp4" />
217217
</video>
218218

219219
Each time you call `push` we add a new route to the navigation stack. When you call `navigate` it first tries to find an existing route with that name, and only pushes a new route if there isn't yet one on the stack.

0 commit comments

Comments
 (0)