PMU/lib/main.dart

23 lines
546 B
Dart
Raw Normal View History

2024-09-15 21:21:26 +04:00
import 'package:flutter/material.dart';
2024-11-14 12:14:24 +04:00
import 'package:pmu/presentation/home_page/home_page.dart';
2024-09-15 21:21:26 +04:00
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
theme: ThemeData(
2024-11-13 23:10:49 +04:00
colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple.shade300),
2024-09-15 21:21:26 +04:00
useMaterial3: true,
),
2024-11-13 23:10:49 +04:00
home: const MyHomePage(title: 'Энциклопедия кошек'),
2024-09-15 21:21:26 +04:00
);
}
2024-11-13 23:10:49 +04:00
}