lunar_calendar_converter 1.0.4+1
Using #
Import the library:
import 'lunar_solar_converter.dart';
You can use this converter to convert between the lunar calendar and the solar calendar. For example:
Lunar lunar = Lunar(lunarYear: 2022, lunarMonth: 4, lunarDay: 1, isLeap: false);
Solar solar = LunarSolarConverter.lunarToSolar(lunar);
print(solar);
You will get 公元2022年5月1日
.
or
Solar solar = Solar(solarYear: 2018, solarMonth: 8, solarDay: 22);
Lunar lunar = LunarSolarConverter.solarToLunar(solar);
print(lunar);
You will get 戊戌年(2018)七月十二
.
1.0.4+1 #
- Documentation fixes
1.0.4 #
- Add return types to all methods
1.0.3 #
- Format code
- Add examples
1.0.2 #
- Optimize documents
1.0.1 #
- Make some inner method private
- Optimize documents
1.0.0 #
- Initial version
import './../lib/lunar_solar_converter.dart';
void main(List<String> arguments) {
Lunar lunar = Lunar(lunarYear: 2020, lunarMonth: 4, lunarDay: 4, isLeap: true);
var result1 = LunarSolarConverter.lunarToSolar(lunar);
var dateTime = result1.dateTime;
print("$lunar -> $result1 / $dateTime");
Solar solar = Solar(solarYear: 2020, solarMonth: 5, solarDay: 26);
Lunar result2 = LunarSolarConverter.solarToLunar(solar);
print("$solar -> $result2");
}
Use this package as a library
1. Depend on it
Add this to your package's pubspec.yaml file:
dependencies:
lunar_calendar_converter: ^1.0.4+1
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:lunar_calendar_converter/lunar.dart';
import 'package:lunar_calendar_converter/lunar_solar_converter.dart';
import 'package:lunar_calendar_converter/solar.dart';
Popularity:
Describes how popular the package is relative to other packages.
[more]
|
60
|
Health:
Code health derived from static analysis.
[more]
|
99
|
Maintenance:
Reflects how tidy and up-to-date the package is.
[more]
|
100
|
Overall:
Weighted score of the above.
[more]
|
80
|
We analyzed this package on Dec 9, 2019, and provided a score, details, and suggestions below. Analysis was completed with status completed using:
- Dart: 2.6.1
- pana: 0.13.1+4
Health issues and suggestions
Document public APIs. (-1 points)
24 out of 24 API elements have no dartdoc comment.Providing good documentation for libraries, classes, functions, and other API elements improves code readability and helps developers find and use your API.
Format lib/lunar.dart
.
Run dartfmt
to format lib/lunar.dart
.
Format lib/lunar_solar_converter.dart
.
Run dartfmt
to format lib/lunar_solar_converter.dart
.
Dependencies
Package | Constraint | Resolved | Available |
---|---|---|---|
Direct dependencies | |||
Dart SDK | >=1.0.0 <3.0.0 |