1234567891011121314151617181920 |
- import 'package:flutter/material.dart';
- import 'package:taskservice/src/home/home.dart';
- void main() {
- runApp(MyApp());
- }
- class MyApp extends StatelessWidget {
- // This widget is the root of your application.
- @override
- Widget build(BuildContext context) {
- return MaterialApp(
- theme: ThemeData(
- primaryColor: Colors.black,
- visualDensity: VisualDensity.adaptivePlatformDensity,
- ),
- home: HomePage(),
- );
- }
- }
|