Skip to content

Instantly share code, notes, and snippets.

@Meherdeep
Created July 28, 2020 20:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Meherdeep/fd1fe32fb5b20213d8ebd594383fcea7 to your computer and use it in GitHub Desktop.
Save Meherdeep/fd1fe32fb5b20213d8ebd594383fcea7 to your computer and use it in GitHub Desktop.
import 'package:agora_video_call/pages/HomePage.dart';
import 'package:flutter/material.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Agora Group Video Call',
debugShowCheckedModeBanner: false,
theme: ThemeData(
primarySwatch: Colors.blue,
accentColor: Colors.blueAccent,
),
home: MyHomePage(),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment