mirror of
https://github.com/kuhyx/testsAndMisc-archive.git
synced 2026-07-04 15:23:06 +02:00
- C/lichess_random_engine, vocabulary_curve, misc/split, 1dvelocitysimulator, opening_learner: test suites added - CPP/miscelanious: tests added - TS/battery-status, champions_leauge_scores, two-inputs: tests added - python_pkg/fm24_searcher, wake_alarm: new packages added - Fix ruff/cppcheck/eslint/clang-format failures - Update .gitignore for C/C++ build artifacts
23 lines
580 B
Dart
23 lines
580 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
import 'package:pomodoro_app/screens/pomodoro_screen.dart';
|
|
import 'package:pomodoro_app/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) => MaterialApp(
|
|
title: 'Pomodoro',
|
|
debugShowCheckedModeBanner: false,
|
|
theme: PomodoroTheme.darkTheme,
|
|
home: const PomodoroScreen(),
|
|
);
|
|
}
|