12 lines
434 B
Dart
12 lines
434 B
Dart
// SPDX-FileCopyrightText: 2026 FocusFlow contributors
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
/// Coordinates Scheduler Command Controller state for the FocusFlow Flutter UI.
|
|
library;
|
|
|
|
import 'package:flutter/foundation.dart';
|
|
import 'package:scheduler_core/scheduler_core.dart';
|
|
|
|
part 'command/scheduler_command_callbacks.dart';
|
|
part 'command/scheduler_command_controller_impl.dart';
|
|
part 'command/scheduler_command_state.dart';
|