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

discontinuedreplaced by: dyte_core
outdated

Integrate dyte video calls in your apps.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:dyte_client/dyte.dart';

void main() {
  runApp(MyApp());
}

class MyApp extends StatefulWidget {
  @override
  _MyAppState createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {

  @override
  void initState() {
    super.initState();
  }

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        body: Row(
          // <Widget> is the type of items in the list.
          children: <Widget>[
            SizedBox(
              width: 384.0,
              height: 820.0,
              child: DyteMeeting(
                roomName: "cluttered-vessel",
                authToken: "",
                onInit: (meeting) {

                },
              )
            )
          ],
        ),
      ),
    );
  }
}
7
likes
0
pub points
72%
popularity

Publisher

verified publisherdyte.io

Integrate dyte video calls in your apps.

Homepage

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on dyte_client