30 lines
589 B
Dart
Raw Normal View History

2024-09-08 19:40:49 +04:00
import 'package:flutter/material.dart';
2024-11-10 18:01:20 +04:00
import 'presentation/home_page/home_page.dart';
2024-09-08 19:40:49 +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',
2024-10-18 17:07:54 +04:00
debugShowCheckedModeBanner: false,
2024-09-08 19:40:49 +04:00
theme: ThemeData(
colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepOrange),
useMaterial3: true,
),
2024-09-08 20:53:37 +04:00
home: const MyHomePage(title: 'Афанасьев Степан Сергеевич'),
2024-09-08 19:40:49 +04:00
);
}
}
2024-10-18 17:07:54 +04:00
2024-10-18 17:07:54 +04:00
2024-10-18 17:07:54 +04:00
2024-10-18 17:07:54 +04:00