You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
455 B
20 lines
455 B
8 months ago
|
import 'package:doctor/common/settings.dart';
|
||
|
import 'package:flutter/material.dart';
|
||
|
|
||
|
class VideoCall extends StatefulWidget {
|
||
|
const VideoCall({Key? key}) : super(key: key);
|
||
|
|
||
|
@override
|
||
|
State<VideoCall> createState() => _VideoCallState();
|
||
|
}
|
||
|
|
||
|
class _VideoCallState extends State<VideoCall> {
|
||
|
@override
|
||
|
Widget build(BuildContext context) {
|
||
|
return Scaffold(
|
||
|
appBar: AppSettings.appBar('Video Call'),
|
||
|
body: Container(),
|
||
|
);
|
||
|
}
|
||
|
}
|