8
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

【Flutter】DateTime 前月の日数を取得する

Posted at

DateTimeを使用して、前月の日数を取得する

月の日数を取得する必要があり、意外と需要あるかなと思いましたので備忘録程度に残しておきます。

実装方法

DateTimeの日付に0を入力すると前月のDateTimeになります。
2021年3月0日=2021年2月28日と解釈してくれます。

DateTime now = DateTime.now();
int get lastMonthDayNum => DateTime(now.year, now.month, 0).day;

実行結果
image.png

その他(実行例)

同じような感じで、
2021年3月-1日=2021年2月27日
になるようです。
image.png

2021年1月0日=2020年12月31日
になります
image.png

8
5
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
8
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?