forked from eva/focus-flow
15 lines
430 B
Dart
15 lines
430 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';
|
|
|
|
/// Starts the FocusFlow app with the seeded demo scheduler composition.
|
|
void main() {
|
|
runApp(FocusFlowApp(composition: DemoSchedulerComposition.seeded()));
|
|
}
|