mobkit_calendar 0.0.9 copy "mobkit_calendar: ^0.0.9" to clipboard
mobkit_calendar: ^0.0.9 copied to clipboard

Mobkit Calendar has built-in basic functionalities for scheduling and representing appointments/events efficiently.

example/lib/main.dart

import 'package:flutter/gestures.dart';
import 'package:flutter/material.dart';
import 'mobkit_calendar_types_view.dart';

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

final GlobalKey<NavigatorState> navigatorKey = GlobalKey<NavigatorState>();

double pageHeight = MediaQuery.of(navigatorKey.currentContext!).size.height;
double pageWidht = MediaQuery.of(navigatorKey.currentContext!).size.width;

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

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

class _MyAppState extends State<MyApp> {
  @override
  void initState() {
    super.initState();
  }

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      navigatorKey: navigatorKey,
      scrollBehavior: const MaterialScrollBehavior().copyWith(
        dragDevices: {
          PointerDeviceKind.mouse,
          PointerDeviceKind.touch,
          PointerDeviceKind.stylus,
          PointerDeviceKind.unknown
        },
      ),
      home: const MobkitCalendarTypesView(),
    );
  }
}
22
likes
0
points
182
downloads

Publisher

verified publisherbiscozum.com.tr

Weekly Downloads

Mobkit Calendar has built-in basic functionalities for scheduling and representing appointments/events efficiently.

Repository (GitHub)
View/report issues

Topics

#calendar #picker #date #event #agenda

License

unknown (license)

Dependencies

flutter, flutter_web_plugins, intl, permission_handler, plugin_platform_interface, visibility_detector

More

Packages that depend on mobkit_calendar