testsAndMisc-archive/pomodoro_app/lib/main.dart

25 lines
552 B
Dart

import 'package:flutter/material.dart';
import 'screens/pomodoro_screen.dart';
import 'theme/pomodoro_theme.dart';
void main() {
runApp(const PomodoroApp());
}
/// The root widget of the Pomodoro application.
class PomodoroApp extends StatelessWidget {
/// Creates a [PomodoroApp].
const PomodoroApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Pomodoro',
debugShowCheckedModeBanner: false,
theme: PomodoroTheme.darkTheme,
home: const PomodoroScreen(),
);
}
}