main.dart 396 B

1234567891011121314151617
  1. import 'package:eye_video/bizmodule/main/thiz/main_page.dart';
  2. import 'package:flutter/material.dart';
  3. void main() => runApp(MyApp());
  4. class MyApp extends StatelessWidget {
  5. @override
  6. Widget build(BuildContext context) {
  7. return MaterialApp(
  8. title: 'EyeVideo',
  9. theme: ThemeData(
  10. primaryColor: Colors.blue,
  11. ),
  12. home: MainPage(title: 'EyeVideo'),
  13. );
  14. }
  15. }