flutterap_event_calendar 1.0.8 copy "flutterap_event_calendar: ^1.0.8" to clipboard
flutterap_event_calendar: ^1.0.8 copied to clipboard

Event calendar with the ability to move,drag , add and edit events

example/main.dart

import 'package:flutter/material.dart';
import 'package:flutterap_event_calendar/fx_gerogorian_event_calendar.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(
      debugShowCheckedModeBanner: false,
      home: Scaffold(
        body: SizedBox(

            height: 700,
            child: FxGeogorianEventCalendar(
              onViewChanged: (details){},
              onAddEvent: (details){},
              onAppointmentResizeEndCell: (details){},
              onAppointmentResizeStartCell: (details){},
              onAppointmentResizeUpdateCell: (details){},
              onDeleteEvent: (details){},
              onDragEndCell: (details){},
              onDragStartCell: (details){},
              onDragUpdateCell: (details){},
              onEditEvent: (details){},
              onLongPressCell: (details){},
              onSelectionChangedCell: (details){},
              onTapCell: (details){},


            )),
      ),
    );
  }
}
6
likes
140
pub points
25%
popularity

Publisher

verified publisherflutterap.com

Event calendar with the ability to move,drag , add and edit events

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

flutter, syncfusion_flutter_calendar

More

Packages that depend on flutterap_event_calendar