flutter_linear_datepicker 2.0.2 flutter_linear_datepicker: ^2.0.2 copied to clipboard
A flutter package providing Gregorian and Jalaali (Persian) date picker
Flutter Persian (Jalaali) and Gregorian Linear Date Picker #
This package provides a Persian or Gregorian linear DatePicker for flutter.
Use this package as a library #
1. Depend on it
Add this to your package's pubspec.yaml file:
dependencies:
flutter_linear_datepicker: ^2.0.2
2. Install it
You can install packages from the command line:
with pub:
$ pub get
with Flutter:
$ flutter pub get
Alternatively, your editor might support pub get or flutter pub get. Check the docs for your editor to learn more.
3. Import it
Now in your Dart code, you can use:
import 'package:flutter_linear_datepicker/flutter_datepicker.dart';
import 'package:flutter_linear_datepicker/number_picker.dart';
How to use? #
Simple usage
just simply infalate following snippet in your flutter code:
LinearDatePicker(
dateChangeListener: (String selectedDate) {
print(selectedDate);
},
);
Advanced usage
You can customize widget using below parameters:
LinearDatePicker(
startDate: "2004/10/17", //yyyy/mm/dd
endDate: "2020/02/20",
initialDate: "2010/11/15",
dateChangeListener: (String selectedDate) {
print(selectedDate);
},
showDay: true, //false -> only select year & month
labelStyle: TextStyle(
fontFamily: 'sans',
fontSize: 14.0,
color: Colors.black,
),
selectedRowStyle: TextStyle(
fontFamily: 'sans',
fontSize: 18.0,
color: Colors.deepOrange,
),
unselectedRowStyle: TextStyle(
fontFamily: 'sans',
fontSize: 16.0,
color: Colors.blueGrey,
),
yearText: "سال | year",
monthText: "ماه | month",
dayText: "روز | day",
showLabels: true, // to show column captions, eg. year, month, etc.
columnWidth: 100,
showMonthName: true,
isJalaali: false // false -> Gregorian
),