Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix broken links and structure #455

Merged
merged 1 commit into from
Aug 8, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,14 +1,12 @@
---
slug: /video-calling-guide
title: Video Calling Guide
title: Video Calling
---

### Introduction

In this tutorial, we will learn how to build a video calling app similar to Google Meet or Zoom using Stream Video.

### Creating a new project on the dashboard

To start with, log in to the Stream dashboard and create a new project for your new video calling app.

You will need to fill in the relevant fields, like this:
Expand Down Expand Up @@ -53,12 +51,12 @@

Stream has several packages that you can use to integrate video into your application.

In this tutorial, we will use the [stream_video_flutter]() package which contains pre-built UI elements for you to use.
In this tutorial, we will use the [stream_video_flutter](https://pub.dev/packages/stream_video_flutter) package which contains pre-built UI elements for you to use.

You can also use the [stream_video]() package directly if you need direct access to the low-level client.
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.

Check failure on line 56 in docusaurus/docs/Flutter/02-tutorials/01-video-calling.mdx

View workflow job for this annotation

GitHub Actions / vale

[vale] docusaurus/docs/Flutter/02-tutorials/01-video-calling.mdx#L56

[Vale.Spelling] Did you really mean 'stream_video'?
Raw output
{"message": "[Vale.Spelling] Did you really mean 'stream_video'?", "location": {"path": "docusaurus/docs/Flutter/02-tutorials/01-video-calling.mdx", "range": {"start": {"line": 56, "column": 23}}}, "severity": "ERROR"}

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).

Check failure on line 59 in docusaurus/docs/Flutter/02-tutorials/01-video-calling.mdx

View workflow job for this annotation

GitHub Actions / vale

[vale] docusaurus/docs/Flutter/02-tutorials/01-video-calling.mdx#L59

[Vale.Spelling] Did you really mean 'stream_video_push_notification'?
Raw output
{"message": "[Vale.Spelling] Did you really mean 'stream_video_push_notification'?", "location": {"path": "docusaurus/docs/Flutter/02-tutorials/01-video-calling.mdx", "range": {"start": {"line": 59, "column": 2}}}, "severity": "ERROR"}

### Initialising Stream Video

Expand Down
File renamed without changes.
Loading