persian datepicker
a persian ( farsi ) datepicker for flutter.
installation
depend on it
dependencies:
persian_datepicker: ^0.2.1
install it
flutter packages get
import it
import 'package:persian_datepicker/persian_datepicker.dart';
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',
outputformat: 'yyyy/mm/dd',
).initialize();
super.initstate();
}
@override
widget build(buildcontext context) {
return materialapp(
home: scaffold(
appbar: appbar(title: text('تقویم ساده'),),
body: builder(builder: (buildcontext context) {
return container(
child: textfield(
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,
datetime: '1397/06/09',
finishdatetime: '1397/06/15',
outputformat: 'yyyy/mm/dd',
).initialize();
inline datepicker
/*inline datepicker*/
persiandatepicker = persiandatepicker(
controller: texteditingcontroller,
datetime: '1397/06/19',
outputformat: 'yyyy/mm/dd',
).initialize();
....
return column(
children: <widget>[
// simple date picker
container(
child: persiandatepicker, // just pass `persiandatepicker` variable as child with no ( )
),
textfield(
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/13',
finishdatetime: '1397/08/17',
daysborderwidth: 3,
weekcaptionsbackgroundcolor: colors.red,
headerbackgroundcolor: colors.blue.withopacity(0.5),
headertextstyle: textstyle(color: colors.blue, fontsize: 17),
headertodaytext: text('امروز', style: textstyle(fontsize: 15),),
headertodayicon: icon(icons.access_alarm, size: 15,),
datepickerheight: 280
).initialize();
options
the controller of the input which you want to connect it to datepicker. this parameter is required
کنترلر تکست فیلدی که میخواهید به دیت پیکر تبدیل کنید
texteditingcontroller controller @required
persian input datetime
ورودی دیت پیکر به فرمت تاریخ پارسی
string datetime default: today date
persian input finish datetime, if this option is set, then datepicker changes to range datepicker
ورودی دیت پیکر برای تاریخ پایان به فرمت پارسی، اگر این ورودی ست شود، دیت پیکر به صورت محدوده ای خواهد بود
string finishdatetime
gregorian input datetime
ورودی دیت پیکر به فرمت تاریخ میلادی
string gregoriandatetime
gregorian finish datetime, if this option is set, then datepicker changes to range datepicker
ورودی دیت پیکر برای تاریخ پایان به فرمت گرگورین، اگر این ورودی ست شود، دیت پیکر به صورت محدوده ای خواهد بود
string gregorianfinishdatetime
output format of the datepicker ( display format )
فرمت خروجی نمایش تاریخ
- yyyy ( four digits year سال به صورت چهار رقمی )
- yy ( two digits year سال به صورت دو رقمی )
- mm ( 0 lead month ماه با صفر در ابتدای عددهای کمتر از 10 )
- m ( month number ماه بدون صفر در ابتدای عددهای کمتر از 10 )
- dd ( 0 lead day number روز با صفر در ابتدای اعداد کمتر از 10 )
- d ( day number روز بدون صفر در ابتدای اعداد کمتر از 10 )
string outputformat default: yyyy/mm/dd
range output or input is two dates beside to each other with a separator between them which is rangeseparator
, default value is #
فرمت ورودی یا خروجی محدوده به صورت دو تاریخ کنار هم با یک جدا کننده است. این ورودی همان جدا کننده است که مقدار پیش فرض آن #
میباشد
string rangeseparator default: #
the height of your datepicker
ارتفاع دیت پیکر
double datepickerheight default: 320
when you tap on the year caption, a tiny dialog appears with an animation, this option handles the duration
of appearing the dialog
زمانیکه روی عنوان سال کلیک میکنید، دیالوگ کوچکی ظاهر میشود، این ورودی مدت زمان ظاهر شدن دیالوگ را مشخص میکند
duration yearselectionanimationduration default: 400 milliseconds
the year dialog box curve
type
نوع انیمیشن دیالوگ انتخاب سال
curve yearselectionanimationcurve default: elasticout
when you tap on the month caption, a tiny dialog appears with an animation, this option handles the duration
of appearing the dialog
زمانیکه روی عنوان ماه کلیک میکنید، دیالوگ کوچکی ظاهر میشود، این ورودی مدت زمان ظاهر شدن دیالوگ را مشخص میکند
duration monthselectionanimationduration default: 400 milliseconds
the month dialog box curve
type
نوع انیمیشن دیالوگ انتخاب ماه
curve monthselectionanimationcurve
the background color of selected year in year-selection-dialog
**رنگ پس زمینه سال انتخاب شده در **دیالوگ انتخاب سال
color yearselectionbackgroundcolor
color yearselectionfontcolor
color yearselectionhighlightbackgroundcolor
color yearselectionhighlightfontcolor
color monthselectionbackgroundcolor
color monthselectionfontcolor
color monthselectionhighlightbackgroundcolor
color monthselectionhighlightfontcolor
color weekcaptionsbackgroundcolor
color weekcaptionsfontcolor
color headerbackgroundcolor
textstyle headertextstyle
color daysbackgroundcolor
color daysfontcolor
color currentdaybackgroundcolor
color currentdayfontcolor
color selecteddaybackgroundcolor
color selecteddayfontcolor
color headertodaybackgroundcolor
color disableddaybackgroundcolor
color disableddayfontcolor
text headertodaytext
icon headertodayicon
color daysbordercolor
color selecteddaybordercolor
color selecteddaysinnerbordercolor
color todaybordercolor
double daysborderwidth
important notes نکات مهم
rangeseparator
and your custom date separator should not be equal, otherwise datepicker will return null
مقدار ورودی rangeseparator
و جداکننده ای که برای فرمت خروجی انتخاب کرده اید نباید یکی باشند در این صورت دیت پیکر خروجی جداکننده های محدوده و خروجی مشابه هستند
برمیگرداند
you can find the full example in the example directory
Comments are closed.