Get Last Month Date In Flutter / Dart

前端 未结 6 1171
故里飘歌
故里飘歌 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 19:14

    Try this package, Jiffy, it used momentjs syntax. See below

    Jiffy().subtract(months: 1);
    

    Where Jiffy() returns date now. You can also do the following, the same result

    var now = DateTime.now();
    Jiffy(now).subtract(months: 1);
    

    Jiffy respects the leap years and how many days there are in each month

提交回复
热议问题