video_call_flutter
A new Flutter project.
Getting Started
This project is a starting point for a Flutter plug-in package, a specialized package that includes platform-specific implementation code for Android and/or iOS.
For help getting started with Flutter, view our online documentation, which offers tutorials, samples, guidance on mobile development, and a full API reference.
Language: English
How to use it.
the default widget
VideoCallFlutter();
Example
class MyApp extends StatefulWidget {
@override
_MyAppState createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {
final TextEditingController controller = TextEditingController();
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(
title: const Text('Video call'),
),
body: Container(
decoration: BoxDecoration(
color: Colors.black
),
child: Center(child: VideoCallFlutter(cover_image: "",controller: controller,Heading: "Enter your code",Button1: "Join",Button2: "Share",user_email: "",video_Subject: "My video call",User_image: "",User_name: "",)),
)
)
);
}
}