34 lines
597 B
Dart
34 lines
597 B
Dart
import 'package:flutter/material.dart';
|
||
import 'package:project1/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.pink),
|
||
useMaterial3: true,
|
||
),
|
||
home: const MyHomePage(title: 'Булатова Каринa Раилевна'),
|
||
);
|
||
}
|
||
}
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|