johnpryan/date_utils
Dart-Utilities zum Arbeiten mit DateTime-Objekten
Auf GitHub ansehen ↗Archiviert
- Stars
- 80
- Forks
- 53
- Letzter Push (UTC)
- 28.12.2023
- Projektstatus
- Archiviert
SprachenDart
Verwendete Abhängigkeiten
Original-README
Englischer Projektschnappschuss. Aktuelle Inhalte auf GitHub.
Projekt-README ein-/ausklappen
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