Is there any method in flutter with INTL package to convert this date format in DD-MM-YYYY

791 Views Asked by At

I am developing a flutter news app. The format of date from Api response is ( 2021-02-05T09:41:13+0000 ) and I want to convert it to DD-MM-YYYY format. Can anybody help me with this?

2

There are 2 best solutions below

0
On

You can use this code :

final DateTime now = DateTime.now();
final DateFormat formatter = DateFormat('dd-MM-yyyy');
final String formatted = formatter.format(now);
return formatted;
0
On
String date = DateFormat.yMd().format('your date here');