dyte_client 0.8.14 copy "dyte_client: ^0.8.14" to clipboard
dyte_client: ^0.8.14 copied to clipboard

discontinuedreplaced by: dyte_core
PlatformAndroidiOS

Integrate dyte video calls in your apps. This package exposes a widget that helps integrate native dyte meeting UI in a flutter app

dyte_client #

Dyte Flutter SDK Complete documentation at https://docs.dyte.io/flutter/

Installation #

Install the Flutter package from pub

flutter pub add dyte_client
copied to clipboard

Quickstart #

:::info Before Getting Started

Before you start integrating Dyte into your application, make sure you've read the Getting Started with Dyte topic and completed the steps in the Integrate Dyte section.

:::

Get the roomName for the meeting and the participant's authToken from our backend APIs (read more about our server APIs here), and pass them to Dyte's DyteMeeting widget.

  1. Import the package.
import 'package:dyte_client/dyte.dart';
import 'package:dyte_client/dyteMeeting.dart';
copied to clipboard
  1. Pass relevant information to DyteMeeting widget.
SizedBox(
    width: <width>,
    height: <height>,
    child: DyteMeeting(
        roomName: "<roomName>",
        authToken: "<authToken>",
        onInit: (DyteMeetingHandler meeting) async {
          // your handler
        },
    )
)
copied to clipboard
7
likes
120
points
155
downloads

Publisher

verified publisherdyte.io

Weekly Downloads

2024.09.29 - 2025.04.13

Integrate dyte video calls in your apps. This package exposes a widget that helps integrate native dyte meeting UI in a flutter app

Homepage

Documentation

API reference

License

unknown (license)

Dependencies

eventify, flutter

More

Packages that depend on dyte_client