30 lines
581 B
Dart
Raw Normal View History

2024-10-18 15:27:46 +04:00
import 'package:flutter/material.dart';
2024-12-11 12:35:10 +04:00
import 'presentation/home_page/home_page.dart';
2024-10-18 15:27:46 +04:00
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
2024-12-11 12:35:10 +04:00
title: 'Flutter Demo',
2024-11-26 13:08:12 +04:00
debugShowCheckedModeBanner: false,
2024-10-18 15:27:46 +04:00
theme: ThemeData(
2024-12-11 12:35:10 +04:00
colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepOrange),
2024-10-18 15:27:46 +04:00
useMaterial3: true,
),
2024-12-11 12:35:10 +04:00
home: const MyHomePage(title: 'Лобашов Иван Дмитриевич'),
2024-11-26 11:59:33 +04:00
);
}
}
2024-11-26 13:08:12 +04:00
2024-11-26 11:59:33 +04:00
2024-11-26 13:08:12 +04:00