emor_ckcalendar 0.0.3 copy "emor_ckcalendar: ^0.0.3" to clipboard
emor_ckcalendar: ^0.0.3 copied to clipboard

Emorphis Technology is Creating a custom calendar widget in Flutter involves defining a model for calendar events, designing the UI, handling user interactions, and allowing customization. You can use [...]

example/lib/main.dart

/*
 *
 *  // Created by Chetan Kailodia on 01/08/24, 6:59 pm
 *  // Copyright (c) 2024 . All rights reserved.
 *  // Last modified 01/08/24, 6:59 pm
 *
 */

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

import 'home_screen/emor_calendar_startpage.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: EmorCalendarStartPage(),
    );
  }
}
2
likes
115
points
12
downloads

Publisher

unverified uploader

Weekly Downloads

Emorphis Technology is Creating a custom calendar widget in Flutter involves defining a model for calendar events, designing the UI, handling user interactions, and allowing customization. You can use existing packages or build your own. Remember to tailor the solution to your specific needs!

Homepage

Documentation

API reference

License

MIT (license)

Dependencies

flutter, intl, simple_gesture_detector

More

Packages that depend on emor_ckcalendar