Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR DART

how to display current date time in flutter

main() {
    var now = new DateTime.now();
    var formatter = new DateFormat('yyyy-MM-dd');
    String formattedDate = formatter.format(now);
    print(formattedDate); // 2016-01-25
} 
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #display #current #date #time #flutter
ADD COMMENT
Topic
Name
9+4 =