FLUTTER ECOSYSTEM

johnpryan/date_utils

用于处理 DateTime 对象的 Dart 工具

date_utils 项目封面
Stars
80
Forks
53
最近推送(UTC)
2023年12月28日
项目状态
已归档
John Ryan GitHub avatar
GITHUB User

John Ryan ↗

@googlePortland, OR官方网站 ↗
语言Dart

使用的依赖

依赖清单 2 项

原始 README

以下为英文项目原文快照,最新内容请访问 GitHub。

展开 / 收起项目 README

date_utils

CI

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.2.0
  1. Run dart pub get

  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