PMU_BTSYLEV_V.A_PIbd-32/lib/main.dart

30 lines
607 B
Dart
Raw Normal View History

2024-11-12 23:23:42 +04:00
import 'package:flutter/material.dart';
2024-11-14 02:07:08 +04:00
import 'package:laba1/presentation/home_page/home_page.dart';
2024-11-12 23:23:42 +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-11-13 21:26:01 +04:00
debugShowCheckedModeBanner: false,
2024-11-12 23:23:42 +04:00
theme: ThemeData(
colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
useMaterial3: true,
),
2024-11-13 21:26:01 +04:00
home: const MyHomePage(title: 'Бацылев Владислав Алексеевич'),
2024-11-12 23:23:42 +04:00
);
}
}
2024-11-13 21:26:01 +04:00