2024-09-06 20:59:47 +04:00
|
|
|
import 'package:flutter/material.dart';
|
2024-09-11 22:57:02 +04:00
|
|
|
import 'package:lab/presentation/home_page/home_page.dart';
|
2024-09-06 20:59:47 +04:00
|
|
|
|
|
|
|
void main() {
|
|
|
|
runApp(const MyApp());
|
|
|
|
}
|
|
|
|
|
|
|
|
class MyApp extends StatelessWidget {
|
|
|
|
const MyApp({super.key});
|
|
|
|
|
2024-09-06 21:09:15 +04:00
|
|
|
@override
|
2024-09-06 20:59:47 +04:00
|
|
|
Widget build(BuildContext context) {
|
|
|
|
return MaterialApp(
|
|
|
|
title: 'Flutter Demo',
|
2024-09-10 20:22:56 +04:00
|
|
|
debugShowCheckedModeBanner: false,
|
2024-09-06 20:59:47 +04:00
|
|
|
theme: ThemeData(
|
2024-09-10 20:22:56 +04:00
|
|
|
colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
|
2024-09-06 20:59:47 +04:00
|
|
|
useMaterial3: true,
|
|
|
|
),
|
2024-09-15 22:05:51 +04:00
|
|
|
home: const MyHomePage(title: 'Lab 4: '),
|
2024-09-06 20:59:47 +04:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|