2024-11-08 13:07:43 +04:00

29 lines
874 B
Dart

import 'package:flutter/material.dart';
import 'package:pmd_labs/home_page/home_page.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
// This widget is the root of your application.
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
theme: ThemeData(
textTheme: const TextTheme(
headlineLarge: TextStyle(fontFamily: 'Correction_Tape'),
bodyLarge: TextStyle(fontFamily: 'Correction_Tape'),
bodyMedium: TextStyle(fontFamily: 'Correction_Tape'),
headlineSmall: TextStyle(fontFamily: 'Correction_Tape'),
),
colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
useMaterial3: true,
),
home: const MyHomePage(title: 'Catalog of Music Albums'),
);
}
}