mirror of
https://github.com/nisrulz/flutter-examples.git
synced 2025-08-23 22:16:31 +08:00
20 lines
419 B
Dart
20 lines
419 B
Dart
import 'package:flutter/material.dart';
|
|
import 'screens/home.dart';
|
|
|
|
void main() => runApp(MyApp());
|
|
|
|
class MyApp extends StatelessWidget {
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return MaterialApp(
|
|
title: 'Covid-19',
|
|
theme: ThemeData(
|
|
primarySwatch: Colors.blue,
|
|
accentColor: Color(0xfff4796b),
|
|
brightness: Brightness.dark,
|
|
),
|
|
home: Home(),
|
|
);
|
|
}
|
|
}
|