buddhist_datetime_dateformat
一个 Dart 包,帮助开发者获取 DateTime 的佛历格式年份,还支持 DateFormatter
一组用于 Dart 和 Flutter 项目中需要使用佛教历法格式 DateTime 的扩展
{"sdk":"flutter"}^0.16.1{"sdk":"flutter"}以下为英文项目原文快照,最新内容请访问 GitHub。
If this helps you out of problem, please give it a like in pub.dev or a star on github. :smile:
ภาษาไทยอ่านวิธีใช้ที่นี่นะครับ
2020-06-05_17-31-47
These are extension that you can get DateTime and DateFormat in Buddhist calendar's format.
I implemented these extensions for use in Thai language project. But you can contribute to add more support for other countries who also use Buddhist calendar in the apps.
Install package via pubspec.yaml
dependencies:
intl: ^0.16.1
buddhist_datetime_dateformat: ^1.0.1
Then go to your main.dart. Let's import and write some Initialization code.
// need this for `Intl.defaultLocale = "th";`
import 'package:intl/intl.dart';
// need this for initializeDateFormatting()
import 'package:intl/date_symbol_data_local.dart';
// This lets magic happen!
import 'package:buddhist_datetime_dateformat/buddhist_datetime_dateformat.dart';
void main() {
// set your default locale here. It will be applied to DateFormat autmomatically.
Intl.defaultLocale = "th";
initializeDateFormatting();
runApp(MyApp());
}
.yearInBuddhistCalendar property in DateTime's instance. This will return converted year value into Buddhist era..formatInBuddhistCalendarThai(datetime) method in DateFormat which return correct format for Thai language if you pass DateTime's instance into it.var now = DateTime.now();
var onlyBuddhistYear = now.yearInBuddhistCalendar;
var formatter = DateFormat.yMMMMEEEEd();
var dateInBuddhistCalendarFormat = formatter.formatInBuddhistCalendarThai(now);
If you want to contribute, there are several countries that also use Buddhist calendar:
Reference: https:en.wikipedia.org/wiki/Buddhist_calendar
I don't know other langauge need a prefix for Buddhist year like in Thailand (พ.ศ.). If yes, so you can help me correct their format by update the code with your customization. Just make pull request.