alt_persian_date_picker 0.0.7 copy "alt_persian_date_picker: ^0.0.7" to clipboard
alt_persian_date_picker: ^0.0.7 copied to clipboard

outdated

Persian date picker for flutter.

A persian (farsi,shamsi) date picker for flutter, inspired by material datetime picker. #

A Flutter persian date picker inspired by material datetime picker and based on shamsi_date.

You can pick date / range date / Month / Year .

Screenshots #

Usage #

Add it to your pubspec.yaml file:


dependencies:

alt_persian_datetime_picker: version

In your library add the following import:


import 'package:alt_persian_date_picker/alt_persian_date_picker.dart';

Here is an example how to use:


            TextButton(
              onPressed: () {
                DatePicker.showDatePicker(
                  context,
                  PickerEnum.month,
                  theme: DatePickerTheme(
                      noneSelectedItemColor: Colors.white,
                      selectedItemColor: Colors.greenAccent,
                      disableItemColor: Colors.redAccent),
                  pickerModel: MonthPickerModel(
                    startSelectedInitDate: 4,
                    disables: [1, 5],
                  ),
                  onConfirm: (time) {
                    print("Selected month is $time");
                    _showToast(time);
                  },
                );
              },
              child: Text("ماه"),
            ),

Date time picker parameters and events #

Parameter Type Default Description
type PickerEnum Has 4 values(month,year,date,rangedate)
headerType HeaderType Has 3 values(seprated ,mix,writable)
disable String or List<String> null Disable dates
theme DatePickerTheme You can add your style to each part of date picker
onConfirm Function(String) This event return a String date

##Pull request and feedback are always appreciated.

###Contact me with ali.tazik@gmail.com.

11
likes
0
pub points
0%
popularity

Publisher

unverified uploader

Persian date picker for flutter.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter, shamsi_date

More

Packages that depend on alt_persian_date_picker