Reputation: 123
What's the best way to display current date on flutter using the following format example :
October 25,Monday
Upvotes: 0
Views: 99
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