Get Last Month Date In Flutter / Dart

前端 未结 6 1230
故里飘歌
故里飘歌 2021-01-11 18:37

in flutter we can get current month using this

var now = new DateTime.now();
var formatter = new DateFormat(\'MM\');
String month = formatter.format(now);
<         


        
6条回答
  •  夕颜
    夕颜 (楼主)
    2021-01-11 18:49

    We can use the subtract method to get past month date.

    DateTime pastMonth = DateTime.now().subtract(Duration(days: 30));
    

提交回复
热议问题