INNER CODE UNIT · Dart
MyApp
AgoraIO-Community/Agora-Flutter-Quickstart · lib/main.dart:7
class MyApp extends StatelessWidget {
// This widget is the root of your application.
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: IndexPage(),
);
}
}