14 lines
357 B
Dart
14 lines
357 B
Dart
/// 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';
|
|
|
|
void main() {
|
|
runApp(FocusFlowApp(composition: DemoSchedulerComposition.seeded()));
|
|
}
|