From 54a485638f64b50933db67404d2cca71a88daef8 Mon Sep 17 00:00:00 2001 From: David Zhao Date: Fri, 5 Aug 2022 21:39:58 -0700 Subject: [PATCH] Update screen share availability. (#142) Resolves #141 --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 7a19605..b5db835 100644 --- a/README.md +++ b/README.md @@ -14,11 +14,11 @@ More Docs and guides are available at [https://docs.livekit.io](https://docs.liv | Feature | Subscribe/Publish | Simulcast | Background audio | Screen sharing | | :-----: | :---------------: | :-------: | :--------------: | :------------: | -| Web | 🟢 | 🟢 | 🟢 | 🟢 | -| iOS | 🟢 | 🟢 | 🟢 | 🔴 | -| Android | 🟢 | 🟢 | 🟢 | 🟢 | -| Mac | 🟢 | 🟢 | 🟢 | 🟡 | -| Windows | 🟢 | 🟢 | 🟢 | 🟡 | +| Web | 🟢 | 🟢 | 🟢 | 🟢 | +| iOS | 🟢 | 🟢 | 🟢 | 🟢 | +| Android | 🟢 | 🟢 | 🟢 | 🟢 | +| Mac | 🟢 | 🟢 | 🟢 | 🟢 | +| Windows | 🟢 | 🟢 | 🟢 | 🟢 | 🟢 = Available @@ -26,7 +26,6 @@ More Docs and guides are available at [https://docs.livekit.io](https://docs.liv 🔴 = Not currently available (Possibly in the future) - ## Example app We built a multi-user conferencing app as an example in the [example/](example/) folder. You can join the same room from any supported LiveKit clients. @@ -36,7 +35,8 @@ We built a multi-user conferencing app as an example in the [example/](example/) Include this package to your `pubspec.yaml` ```yaml -... + +--- dependencies: livekit_client: ``` @@ -107,7 +107,7 @@ On Windows [VS 2019](https://visualstudio.microsoft.com/thank-you-downloading-vi final roomOptions = RoomOptions( adaptiveStream: true, dynacast: true, - // ... your room options + // ... your room options ) final room = await LiveKitClient.connect(url, token, roomOptions: roomOptions); @@ -180,8 +180,8 @@ Audio tracks are played automatically as long as you are subscribed to them. LiveKit client makes it simple to build declarative UI that reacts to state changes. It notifies changes in two ways -* `ChangeNotifier` - generic notification of changes. This is useful when you are building reactive UI and only care about changes that may impact rendering. -* `EventsListener` - listener pattern to listen to specific events (see [events.dart](https://github.com/livekit/client-sdk-flutter/blob/main/lib/src/events.dart)). +- `ChangeNotifier` - generic notification of changes. This is useful when you are building reactive UI and only care about changes that may impact rendering. +- `EventsListener` - listener pattern to listen to specific events (see [events.dart](https://github.com/livekit/client-sdk-flutter/blob/main/lib/src/events.dart)). This example will show you how to use both to react to room events.