Skip to content

Commit

Permalink
added doc fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
deven98 committed Oct 13, 2023
1 parent d13a2b5 commit 503e215
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions docusaurus/docs/Flutter/01-setup/01-introduction.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ description: Introduction to Stream's Video SDK
[Stream’s Video Flutter SDK](https://github.com/GetStream/stream-video-flutter) enables you to easily build native Video and Audio calling applications in Flutter using Dart.

:::note
Want to dive directly into the code? Check out our step-by-step tutorial to
build your own video calling application using Stream video.
Want to dive directly into the code?
Check out our [step-by-step tutorial](https://getstream.io/video/docs/flutter/video-calling-guide/) to build your own video calling application using Stream video.
:::

The SDK is divided into four parts to help you quickly and effectively build video and voice applications with Stream:
Expand Down
8 changes: 4 additions & 4 deletions docusaurus/docs/Flutter/02-tutorials/01-video-calling.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ In this tutorial, we will use the [stream_video_flutter](https://pub.dev/package
You can also use the [stream_video](https://pub.dev/packages/stream_video) package directly if you need direct access to the low-level client.
The [stream_video_flutter_background] package adds background capabilities for the app on Android while the
[stream_video_push_notification] package helps in adding push notifications and an end-to-end call flow (CallKit).
The [stream_video_flutter_background](https://pub.dev/packages/stream_video_flutter_background) package adds background capabilities for the app on Android while the
[stream_video_push_notification](https://pub.dev/packages/stream_video_push_notification) package helps in adding push notifications and an end-to-end call flow (CallKit).
### Initialising Stream Video
Expand Down Expand Up @@ -154,8 +154,8 @@ return Scaffold(
);
```

To instantiate a call, you can use the `StreamVideo.makeCall()` method. You then need to create this
on the backend using the `call.getOrCreate()` method.
To instantiate a call, you can use the `StreamVideo.makeCall()` method. You then need to call `call.getOrCreate()` method.
This method creates the call in the backend.

Here is how that looks in code:

Expand Down
2 changes: 1 addition & 1 deletion docusaurus/docs/Flutter/05-advanced/01-deeplinking.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ To handle deep links in Android you need to declare an intent filter in `android
<category android:name="android.intent.category.BROWSABLE" />
<data
android:host="[YOUR_HOST]"
android:pathPrefix="/join/"
android:pathPrefix="/join"
android:scheme="https" />
</intent-filter>
</activity>
Expand Down

0 comments on commit 503e215

Please sign in to comment.