main.dart 456 B

1234567891011121314151617181920
  1. import 'package:flutter/material.dart';
  2. import 'package:taskservice/src/home/home.dart';
  3. void main() {
  4. runApp(MyApp());
  5. }
  6. class MyApp extends StatelessWidget {
  7. // This widget is the root of your application.
  8. @override
  9. Widget build(BuildContext context) {
  10. return MaterialApp(
  11. theme: ThemeData(
  12. primaryColor: Colors.black,
  13. visualDensity: VisualDensity.adaptivePlatformDensity,
  14. ),
  15. home: HomePage(),
  16. );
  17. }
  18. }