kiss_queue 0.2.1
kiss_queue: ^0.2.1 copied to clipboard
A simple, backend-agnostic queue interface for Dart
import 'package:flutter/material.dart';
import 'package:kiss_queue_example/queue_demo_screen.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Kiss Queue Demo',
theme: ThemeData(
colorScheme: const ColorScheme.light(
primary: Colors.black,
secondary: Colors.grey,
surface: Colors.white,
error: Colors.red,
onPrimary: Colors.white,
onSecondary: Colors.white,
onSurface: Colors.black,
onError: Colors.white,
),
useMaterial3: true,
),
home: const QueueDemoScreen(),
);
}
}