emor_ckcalendar 0.0.2
emor_ckcalendar: ^0.0.2 copied to clipboard
This Package is create by Chetan Kailodia. This is user in future in Emorphis Technology for the develop of flutter calender
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(),
);
}
}