PIbd-31_Belianin_N._N._PMD/lib/main.dart

24 lines
553 B
Dart
Raw Normal View History

2024-09-16 15:06:59 +04:00
import 'package:flutter/material.dart';
2024-09-20 16:16:06 +04:00
import 'package:pmd/home_page/home_page.dart';
2024-09-16 15:06:59 +04:00
void main() {
2024-09-17 03:13:55 +04:00
runApp(const MyApp());
2024-09-16 15:06:59 +04:00
}
class MyApp extends StatelessWidget {
2024-09-17 03:13:55 +04:00
const MyApp({super.key});
2024-09-16 15:06:59 +04:00
@override
Widget build(BuildContext context) {
return MaterialApp(
2024-09-17 03:13:55 +04:00
title: 'Flutter Demo',
2024-09-16 15:15:08 +04:00
debugShowCheckedModeBanner: false,
2024-09-16 15:06:59 +04:00
theme: ThemeData(
2024-09-20 16:16:06 +04:00
colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
2024-09-17 03:13:55 +04:00
useMaterial3: true,
2024-09-16 15:06:59 +04:00
),
2024-09-20 16:16:06 +04:00
home: const MyHomePage(title: 'Laboratory 5: API..... '),
2024-09-16 15:06:59 +04:00
);
}
2024-09-17 03:13:55 +04:00
}