flutteruser
flutteruser

Reputation: 123

DIsplaying Date in custom format -Flutter

What's the best way to display current date on flutter using the following format example :

October 25,Monday

Upvotes: 0

Views: 99

Answers (1)

esentis
esentis

Reputation: 4656

Definetely

 DateFormat('MMMM d,EEEE').format(DateTime.now())

But make sure you also import the following

import 'package:intl/intl.dart';

Upvotes: 1

Related Questions