2024-09-23 18:28:49 +04:00
|
|
|
import 'package:flutter/material.dart';
|
2024-10-25 21:48:27 +04:00
|
|
|
import 'package:pmd_lab/presentation/home_page/home_page.dart';
|
2024-09-23 18:28: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',
|
|
|
|
theme: ThemeData(
|
|
|
|
// colorScheme: ColorScheme.fromSeed(seedColor: Colors.black), colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
|
|
|
|
useMaterial3: true,
|
|
|
|
),
|
|
|
|
home: const MyHomePage(title: 'Flutter rocks!'),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|