persian_datepicker 1.2.0 persian_datepicker: ^1.2.0 copied to clipboard
A fully customizable persian ( farsi ) datepicker for flutter + datetime manipulation methods.
Persian DatePicker & DateTime Manipulation #
A persian ( farsi ) datepicker for flutter.
to see an example of date conversion and manipulation, refer to DateTime
section in this page.
Usage #
A simple example with a TextField which turns into a datepicker
main.dart
import 'package:flutter/material.dart';
import 'package:persian_datepicker/persian_datepicker.dart';
void main() {
runApp(Home());
}
class Home extends StatefulWidget {
@override
HomeState createState() {
return new HomeState();
}
}
class HomeState extends State<Home> {
// our text controller
final TextEditingController textEditingController = TextEditingController();
PersianDatePickerWidget persianDatePicker;
@override
void initState() {
/*Simple DatePicker*/
persianDatePicker = PersianDatePicker(
controller: textEditingController,
// datetime: '1397/06/09',
).init();
super.initState();
}
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(title: Text('دیت پیکر ساده'),),
body: Builder(builder: (BuildContext context) {
return Container(
child: TextField(
enableInteractiveSelection: false, // *** this is important to prevent user interactive selection ***
onTap: () {
FocusScope.of(context).requestFocus(new FocusNode()); // to prevent opening default keyboard
showModalBottomSheet(
context: context,
builder: (BuildContext context) {
return persianDatePicker;
});
},
controller: textEditingController,
),
);
}),
),
);
}
}
HOW IT LOOKS #
Simple DatePicker
Range DatePicker
/*Range DatePicker*/
persianDatePicker = PersianDatePicker(
controller: textEditingController,
rangeDatePicker: true,
// datetime: '1397/06/09',
// finishDatetime: '1397/06/15',
).init();
Inline DatePicker
/*Inline DatePicker*/
persianDatePicker = PersianDatePicker(
controller: textEditingController,
datetime: '1397/06/19',
).init();
....
return Column(
children: <Widget>[
// Simple Date Picker
Container(
child: persianDatePicker, // just pass `persianDatePicker` variable as child with no ( )
),
// you can omit TextField when using datepicker as inline
TextField(
enableInteractiveSelection: false,
controller: textEditingController,
),
],
);
Customized DatePicker
You can customize datepicker as you wish, there are a lot of options to set, below code is just a few of them.
/*Customized DatePicker*/
persianDatePicker = PersianDatePicker(
controller: textEditingController,
outputFormat: 'YYYY/MM/DD',
datetime: '1397/08/29',
finishDatetime: '1397/08/30',
daysBorderWidth: 3,
weekCaptionsBackgroundColor: Colors.red,
headerBackgroundColor: Colors.blue.withOpacity(0.5),
headerTextStyle: TextStyle(color: Colors.blue, fontSize: 17),
headerTodayIcon: Icon(Icons.access_alarm, size: 15,),
datePickerHeight: 280
).init();
/*Customized Font Family ( Farsi Digits )*/
persianDatePicker = PersianDatePicker(
controller: textEditingController,
farsiDigits: true
).init();
Or if you have a font which supports farsi digits then you can simply pass the font name and everything would be ok
اگر فونتی در برنامه استفاده کرده اید که قابلیت نمایش اعداد فارسی را دارد تنها لازم است اسم فونت را به دیت پیکر بدهید
/*Customized Font Family ( Farsi Digits )*/
persianDatePicker = PersianDatePicker(
controller: textEditingController,
fontFamily: 'Vazir' // here I used Vazir font
).init();
Events #
onChange
: fires after tapping on a day. It has two arguments, oldText
and newText
which represents the value of datepicker before-tap and after-tap respectively.
persianDatePicker = PersianDatePicker(
controller: textEditingController,
onChange: (String oldText, String newText) {
print(oldText);
print(newText);
}
).init();
DateTime #
in order to use PersianDateTime
methods, you need to add following line into your .dart file
import 'package:persian_datepicker/persian_datetime.dart';
You can now use following methods with PersianDateTime
instances
implemented methods:
- toJalaali( format ) // see output formats
- toGregorian( format ) // see output formats
- isAfter
- isBefore
- difference
- isEqual
- add
- subtract
PersianDateTime persianDate1 = PersianDateTime(); // default is now
print(persianDate1.datetime); // 2019-02-07 00:00:00.000
print(persianDate1); // 1397/11/18
PersianDateTime persianDate2 = PersianDateTime(jalaaliDateTime: '1397/08/09');
print(persianDate2.toGregorian(format: 'YYYY - MMM - DD')); // 2018 - Oct - 31
PersianDateTime persianDate3 = PersianDateTime.fromGregorian(); // default is now
print(persianDate3.toJalaali(format: 'YYYY/MM/DD')); // 1397/11/18
print(persianDate3.isEqual(persianDate1)); // true
PersianDateTime persianDate4 = persianDate2.subtract(Duration(days: 10)); // subtract 10 days from persianDate2 and returns a new PersianDatePicker instance
print(persianDate4.isBefore(persianDate2)); // true
print(persianDate4.difference(persianDate2).inDays); // -10
Output formats #
YYYY
full year
YY
2 digits year
MMMM
full month name ( doesn't work in datepicker )
MMM
short month name ( this only works in gregorian dates and also doesn't work in datepicker )
MM
leading zero month digit
M
month without leading zero
DD
leading zero day digit
D
day without leading zero
Important Notes نکات مهم #
up to this version all output dates are in persian.
تا این نسخه تمام تاریخ های خروجی پارسی(جلالی) هستند
rangeSeparator
and your custom date separator should not be equal, otherwise datepicker will return null
مقدار ورودی rangeSeparator
و جداکننده ای که برای فرمت خروجی انتخاب کرده اید نباید یکی باشند در این صورت دیت پیکر خروجی جداکننده های محدوده و خروجی مشابه هستند
برمیگرداند
Persian input dates must respect YYYY/MM/DD
format. output format is up to you
Gregorian input dates must respect YYYY-MM-DD
format. output format is persian and up to you
فرمت تاریخ های ورودی که پارسی (جلالی) هستند باید بصورت
YYYY/MM/DD
باشد. فرمت خروجی به دلخواه شماست
فرمت تاریخ های ورودی که میلادی هستند باید بصورت
YYYY-MM-DD
باشد. فرمت تاریخ خروجی، پارسی و به دلخواه شما خواهد بود
Examples #
You can find the full example in the Git Repository, example directory