johnpryan/date_utils
Dart utilities for working with DateTime objects
View on GitHub ↗Archived
- Stars
- 80
- Forks
- 53
- Last push (UTC)
- Dec 28, 2023
- Project status
- Archived
LanguagesDart
Dependencies used
Original README
English project snapshot. Visit GitHub for the latest content.
Expand / collapse project README
date_utils
A Dart library to manipulate DateTimes. Useful for creating calendar functionality.
Example
See Packages:
Usage
- Add the following to your pubspec.yaml:
dev_dependencies:
date_utils: ^0.2.0
-
Run
dart pub get -
Import the package in your Dart code
import 'package:date_utils/date_utils.dart';
- Use the
Utilsclass.
// example
var date = new DateTime(2017, 3);
var lastDay = Utils.lastDayOfMonth(date);
print(lastDay.day);
// => 31