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

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

flutterap_event_calender #

This package is extended from flutterap admin panel Flutterap is a most developer-friendly, highly customizable admin dashboard template based on Flutter. It comes with lots of features that make development easier for you. Website : flutterap.com

#

Features #

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

Add event #

Edit event #

Flutterap Event Calender #

Add event #

Edit event #

Usage #


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){},


            )),
      ),
    );
  }
}