mirror of
https://github.com/kuhyx/testsAndMisc-archive.git
synced 2026-07-04 15:23:06 +02:00
25 lines
552 B
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(),
|
|
);
|
|
}
|
|
}
|