2024-09-15 21:21:25 +04:00
|
|
|
import 'package:flutter/material.dart';
|
2024-09-29 20:01:48 +04:00
|
|
|
import 'package:laba1/presentation/home_page/home_page.dart';
|
2024-09-15 21:21:25 +04:00
|
|
|
|
|
|
|
void main() {
|
|
|
|
runApp(const MyApp());
|
|
|
|
}
|
|
|
|
|
|
|
|
class MyApp extends StatelessWidget {
|
|
|
|
const MyApp({super.key});
|
|
|
|
|
2024-09-15 21:37:26 +04:00
|
|
|
@override
|
2024-09-15 21:21:25 +04:00
|
|
|
Widget build(BuildContext context) {
|
|
|
|
return MaterialApp(
|
|
|
|
title: 'Flutter Demo',
|
|
|
|
theme: ThemeData(
|
2024-09-29 01:21:02 +04:00
|
|
|
primarySwatch: Colors.amber,
|
2024-09-15 21:21:25 +04:00
|
|
|
),
|
2024-09-29 20:01:48 +04:00
|
|
|
home: const MyHomePage(title: 'Кувшинов Тимур Александрович'),
|
2024-09-15 21:37:26 +04:00
|
|
|
);
|
2024-09-15 21:21:25 +04:00
|
|
|
}
|
|
|
|
}
|