PIbd-32_Chubykina_P.P._mobilki/lib/main.dart

24 lines
598 B
Dart
Raw Normal View History

2024-09-18 16:29:46 +04:00
import 'package:flutter/material.dart';
2024-10-02 16:37:43 +04:00
import 'package:mobilki_lab1/presentation/home_page/home_page.dart';
2024-09-18 16:29:46 +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-09-18 16:52:27 +04:00
debugShowCheckedModeBanner: false,
2024-09-18 16:29:46 +04:00
theme: ThemeData(
colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
useMaterial3: true,
),
2024-09-18 17:26:27 +04:00
home: const MyHomePage(title: 'Чубыкина Полина Павловна'),
2024-09-18 16:29:46 +04:00
);
}
}