clean_nepali_calendar 1.0.1 clean_nepali_calendar: ^1.0.1 copied to clipboard
Highly customizable Nepali Calendar package to display Nepali Bikram Sambat Calendar in your flutter applications.
import 'package:clean_nepali_calendar/clean_nepali_calendar.dart';
import 'package:flutter/material.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Clean Nepali Calendar Demo',
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: HomePage(),
);
}
}
class HomePage extends StatelessWidget {
@override
Widget build(BuildContext context){
final NepaliDateTime first =NepaliDateTime(2075,5);
final NepaliDateTime last = NepaliDateTime(2077,3);
return Scaffold(
appBar: AppBar(
title: Text('Clean Nepali Calendar'),
),
body: SingleChildScrollView(
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: <Widget>[
CleanNepaliCalendar(
calendarStyle: CalendarStyle(
selectedColor: Colors.deepOrange,
dayStyle: TextStyle(fontWeight: FontWeight.bold),
todayStyle: TextStyle(
fontSize: 20.0,
),
todayColor: Colors.orange.shade400,
highlightSelected: true,
renderDaysOfWeek: true,
highlightToday: true,
),
headerStyle: HeaderStyle(
centerHeaderTitle: false,
titleTextStyle: TextStyle(fontWeight: FontWeight.bold, color: Colors.deepOrange,fontSize: 20.0),
),
initialDate: NepaliDateTime.now(),
firstDate: first,
lastDate: last,
language: Language.nepali,
onDaySelected: (day){
print(day.toString());
},
),
],
),
),
);
}
}