emor_ckcalendar 0.0.3
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(),
);
}
}