nepali_date_picker 1.2.1 nepali_date_picker: ^1.2.1 copied to clipboard
Material Style Date Picker with Bikram Sambat(Nepali) Calendar Support. Supports both Android and ios. Available in Nepali and English Languages.
Nepali Date Picker #
Bikram Sambat(B.S.) Date Picker.
Usage #
1. Depend
Add this to you package's pubspec.yaml
file:
dependencies:
nepali_date_picker: ^1.2.1
2. Install
Run command:
$ flutter packages get
3. Import
Import in Dart code:
import 'package:nepali_date_picker/nepali_date_picker.dart';
4. Display Nepali DatePicker
///
/// context: BuildContext.
/// startYear: Min value of year's selection range.
/// endYear: Max value of year's selection range.
/// color: Accent Color.
/// barrierDismissible: Defines if Date Picker Dialog is dismissible through barriers. Default is false.
/// language: Language.NEPALI or Language.ENGLISH. Default is Language.ENGLISH.
/// onPicked: Callback when "OK" action is pressed. Callback type is DateTime.
///
NepaliDatePicker.showPicker(
context: context,
startYear: 2052,
endYear: 2085,
color: Colors.pink,
barrierDismissible: false,
language: Language.NEPALI,
onPicked: (DateTime date) {
setState(() {
///Iso8601String Format: 2018-12-23T00:00:00
String _pickedDate = date.toIso8601String().split("T").first;
});
},
);
In Nepali Language
Example #
License #
Copyright 2018 Sarbagya Dhaubanjar
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.