emor_calendar 0.0.1 copy "emor_calendar: ^0.0.1" to clipboard
emor_calendar: ^0.0.1 copied to clipboard

This Flutter package provides a customizable calendar with both monthly and weekly views, allowing users to easily navigate and select dates. The package also includes an event calendar widget for Flu [...]

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:intl/date_symbol_data_local.dart';

import 'home_screen/home_screen.dart';

void main() {
  initializeDateFormatting().then((_) => runApp(MyApp()));
}

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

  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Emorphis Calendar Example',
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: HomeScreen(),
    );
  }
}
1
likes
110
points
35
downloads

Documentation

API reference

Publisher

unverified uploader

Weekly Downloads

This Flutter package provides a customizable calendar with both monthly and weekly views, allowing users to easily navigate and select dates. The package also includes an event calendar widget for Flutter with support for dynamic events, date range restrictions, and event dot colors.

Homepage

License

MIT (license)

Dependencies

flutter, intl

More

Packages that depend on emor_calendar