PIbd-31_Blokhin_D.A_PMU/lib/main.dart

24 lines
591 B
Dart
Raw Permalink Normal View History

2024-11-01 20:02:56 +04:00
import 'package:flutter/material.dart';
2024-11-26 19:10:48 +04:00
import 'package:untitled/presentation/home_page/home_page.dart';
2024-11-01 20:02:56 +04:00
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
2024-11-12 14:00:50 +04:00
@override
2024-11-01 20:02:56 +04:00
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
2024-11-12 14:00:50 +04:00
debugShowCheckedModeBanner: false,
2024-11-01 20:02:56 +04:00
theme: ThemeData(
2024-11-12 14:00:50 +04:00
colorScheme: ColorScheme.fromSeed(seedColor: Colors.white),
2024-11-01 20:02:56 +04:00
useMaterial3: true,
),
2024-11-12 14:00:50 +04:00
home: const MyHomePage(title: 'Блохин Дмитрий Алексеевич'),
2024-11-01 20:02:56 +04:00
);
}
}