openvidu_flutter 0.0.6 openvidu_flutter: ^0.0.6 copied to clipboard
Migration from openvidu-android to Flutter. The package contains a working example that targets OpenVidu 2.29.0.
import 'package:flutter/material.dart';
import 'package:openvidu_flutter_example/screens/prepare_videocall.dart';
void main() {
runApp(
const MaterialApp(
home: PrepareVideocall(),
debugShowCheckedModeBanner: false,
debugShowMaterialGrid: false,
),
);
}