23 lines
575 B
Dart
23 lines
575 B
Dart
|
import 'package:flutter/material.dart';
|
||
|
import 'package:flutter_test_app/presentation/home_page/home_page.dart';
|
||
|
void main() {
|
||
|
runApp(const MyApp());
|
||
|
}
|
||
|
|
||
|
class MyApp extends StatelessWidget {
|
||
|
const MyApp({super.key});
|
||
|
|
||
|
@override
|
||
|
Widget build(BuildContext context) {
|
||
|
return MaterialApp(
|
||
|
title: 'Flutter Demo',
|
||
|
debugShowCheckedModeBanner: false,
|
||
|
theme: ThemeData(
|
||
|
colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
|
||
|
useMaterial3: true,
|
||
|
),
|
||
|
home: const HomePage(title: 'Bakshaeva_E.A._PIbd-33'),
|
||
|
);
|
||
|
}
|
||
|
}
|