easy_calendar 0.1.2
easy_calendar: ^0.1.2 copied to clipboard
A simple to use and simple to maintain calendar package. It uses UTC and does not care about timezones. If you need timezones, you have to implement the conversion yourself.
example/easy_calendar_example.dart
import 'package:utc_date_time/utc_date_time.dart';
void main() {
// TODO: Create example.
var awesome = UtcDateTime(2000);
print('awesome: ${awesome.day}');
}