tasky 1.0.0
tasky: ^1.0.0 copied to clipboard
Tasky simplifies managing Dart isolates for handling long-running tasks in Flutter. It offers priority-based task management, automatic isolate scaling, retries, and real-time progress updates. Keep y [...]
import 'package:example/landing/pages/task_manager.page.dart';
import 'package:flutter/material.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
// This widget is the root of your application.
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Tasky Demo',
theme: ThemeData(
colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
useMaterial3: true,
),
home: const TaskManagerScreenPage(),
);
}
}