// SPDX-FileCopyrightText: 2026 FocusFlow contributors // SPDX-License-Identifier: AGPL-3.0-only /// Launches the FocusFlow Flutter desktop application. library; import 'package:flutter/material.dart'; import 'app/demo_scheduler_composition.dart'; import 'app/focus_flow_app.dart'; export 'app/demo_scheduler_composition.dart'; export 'app/focus_flow_app.dart'; /// Starts the FocusFlow app with the seeded demo scheduler composition. void main() { runApp(FocusFlowApp(composition: DemoSchedulerComposition.seeded())); }