waseemdev / date_utils

Dart Library for working with DateTimes.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

date_utils

Build Status

A Dart library to manipulate DateTimes. Useful for creating calendar functionality.

Example

See Packages:

Tzolkin Web Calendar

flutter_calendar

Usage

  1. Add the following to your pubspec.yaml:
dev_dependencies:
    date_utils: ^0.0.1
  1. Run pub install

  2. Import the package in your Dart code

import 'package:date_utils/date_utils.dart';
  1. Use the Utils class.
// example
var date = new DateTime(2017, 3);
var lastDay = Utils.lastDayOfMonth(date);
print(lastDay.day);
// => 31

About

Dart Library for working with DateTimes.

License:BSD 3-Clause "New" or "Revised" License


Languages

Language:Dart 100.0%