booking_and_publish_slots 0.0.18 copy "booking_and_publish_slots: ^0.0.18" to clipboard
booking_and_publish_slots: ^0.0.18 copied to clipboard

Booking and Publish Slots plugin help you to implement slots booking.

example/lib/main.dart

import 'package:booking_and_publish_slots/booking_and_publish_slots.dart';
import 'package:booking_and_publish_slots/components/booking_and_publish_slots_main.dart';
import 'package:flutter/material.dart';
import 'package:flutter_riverpod/flutter_riverpod.dart';

void main() {
  runApp(const MyApp());
}

class MyApp extends StatefulWidget {
  const MyApp({super.key});

  @override
  State<MyApp> createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      theme: ThemeData(

        // useMaterial3: true,
        // colorSchemeSeed: const Color(0x9f4376f8),
      ),
      home: Scaffold(
        appBar: AppBar(
          title: const Text('BookingAndPublishSlots example app'),
        ),
        body: const BookingAndPublishSlots(),
      ),
    );
  }
}
10
likes
130
points
45
downloads

Publisher

unverified uploader

Weekly Downloads

Booking and Publish Slots plugin help you to implement slots booking.

Homepage

Documentation

API reference

License

MIT (license)

Dependencies

flutter, flutter_riverpod, flutter_svg, flutter_web_plugins, intl, plugin_platform_interface

More

Packages that depend on booking_and_publish_slots