flutter_persian_calendar 0.0.2 flutter_persian_calendar: ^0.0.2 copied to clipboard
Flutter package for easy integration of Persian (Jalali) calendar widgets. Customize appearance, filter dates, and simplify date selection. Ideal for projects requiring localized calendar functionality.
import 'package:flutter/material.dart';
import 'package:flutter_persian_calendar/flutter_persian_calendar.dart';
import 'package:shamsi_date/shamsi_date.dart';
import 'constants.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
debugShowCheckedModeBanner: false,
theme: ThemeData(
colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
fontFamily: 'Vazirmatn',
),
home: const MyHomePage(
title: 'Flutter Persian Calendar',
),
);
}
}
class MyHomePage extends StatefulWidget {
const MyHomePage({super.key, required this.title});
final String title;
@override
State<MyHomePage> createState() => _MyHomePageState();
}
class _MyHomePageState extends State<MyHomePage> {
Jalali selectedDate = Jalali(1360, 1, 1);
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
backgroundColor: Theme.of(context).colorScheme.inversePrimary,
title: Text(widget.title),
),
body: Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
const Text(
'Persian Calendar Widgets',
style: TextStyle(
fontSize: 20,
fontWeight: FontWeight.bold,
),
),
const SizedBox(height: 16),
Text(
'selected Date: $selectedText',
),
const SizedBox(height: 16),
ElevatedButton(
onPressed: () {
showDialog(
context: context,
builder: (context) {
return Dialog(
child:
shamsiDateCalendarWidget(context, calendarDarkTheme),
);
},
);
},
child: const Text('Select Date(With Dark Theme)'),
),
const SizedBox(height: 16),
ElevatedButton(
onPressed: () {
showDialog(
context: context,
builder: (context) {
return Dialog(
child:
shamsiDateCalendarWidget(context, calendarLightTheme),
);
},
);
},
child: const Text('Select Date(With Light Theme)'),
),
],
),
),
);
}
PersianCalendar shamsiDateCalendarWidget(
BuildContext context,
PersianCalendarTheme calendarTheme,
) {
return PersianCalendar(
calendarHeight: 376,
calendarWidth: 360,
selectedDate: selectedDate,
onDateChanged: (newDate) {
setState(() {
selectedDate = newDate;
});
},
onConfirmButtonPressed: () {
Navigator.pop(context);
},
calendarStartDate: Jalali(1300, 4, 12),
calendarEndDate: Jalali(1402, 7, 10),
calendarTheme: calendarTheme,
);
}
String get selectedText =>
'${selectedDate.year}/${selectedDate.month}/${selectedDate.day}';
}