pmu/lib/main.dart

26 lines
570 B
Dart
Raw Normal View History

2024-09-19 23:10:07 +04:00
import 'package:flutter/material.dart';
2024-10-13 21:04:59 +04:00
import 'package:flutter_app/presentation/home_page/home_page.dart';
2024-09-19 23:10:07 +04:00
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
// This widget is the root of your application.
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
theme: ThemeData(
2024-10-06 21:18:07 +04:00
colorScheme: ColorScheme.fromSeed(seedColor: Colors.black),
2024-09-19 23:10:07 +04:00
useMaterial3: true,
),
2024-10-13 21:04:59 +04:00
home: const MyHomePage(title: 'LOVE REPUBLIC'),
2024-09-19 23:10:07 +04:00
);
}
}