Darshan Khadse
Darshan Khadse

Reputation: 41

How to Format a date in flutter without any seperators?

I have tried to format date using seperators Using intl packags but how should I format date like 20201227

Upvotes: 0

Views: 124

Answers (1)

Tomas
Tomas

Reputation: 1051

Simply: DateFormat('yyyyMMdd').format(date)

Printscreen of the result:

enter image description here

Upvotes: 2

Related Questions