announcement_scheduler 1.0.0 copy "announcement_scheduler: ^1.0.0" to clipboard
announcement_scheduler: ^1.0.0 copied to clipboard

A Flutter package for scheduling text-to-speech announcements with support for one-time and recurring notifications.

example/lib/main.dart

import 'package:flutter/material.dart';

import 'pages/example_home_page.dart';

void main() async {
  WidgetsFlutterBinding.ensureInitialized();
  runApp(const AnnouncementSchedulerExample());
}

class AnnouncementSchedulerExample extends StatelessWidget {
  const AnnouncementSchedulerExample({super.key});

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Announcement Scheduler Example',
      theme: ThemeData(primarySwatch: Colors.blue, useMaterial3: true),
      home: const ExampleHomePage(),
    );
  }
}
2
likes
0
points
353
downloads

Publisher

unverified uploader

Weekly Downloads

A Flutter package for scheduling text-to-speech announcements with support for one-time and recurring notifications.

Repository (GitHub)
View/report issues

Topics

#notifications #tts #scheduling #announcements #accessibility

License

unknown (license)

Dependencies

flutter, flutter_local_notifications, flutter_tts, get, hive_flutter, permission_handler, timezone

More

Packages that depend on announcement_scheduler