Answers for "how to display current date time in flutter"

11

flutter get current date

import 'package:intl/intl.dart';

main() {
  static final DateTime now = DateTime.now();
  static final DateFormat formatter = DateFormat('yyyy-MM-dd');
  final String formatted = formatter.format(now);
  print(formatted); // something like 2013-04-20
}
// https://pub.dev/documentation/intl/latest/intl/DateFormat-class.html
Posted by: Guest on July-11-2020
3

how to display current date time in flutter

DateTime dateToday = DateTime(DateTime.now().year, DateTime.now().month, DateTime.now().day) ;
Posted by: Guest on January-03-2021
0

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
}
Posted by: Guest on January-03-2021
0

how to display current date time in flutter

DateTime now = new DateTime.now();
DateTime date = new DateTime(now.year, now.month, now.day);
Posted by: Guest on January-03-2021
1

how to return an output to a function in Python

''' if you don't know def can make a function, 
I am making a simple squaring function to explain''' 
# space after parentisis is needed
def square(x) :
  s = x*x
  # do it with the return keyword!
  return s
Posted by: Guest on November-01-2020

Code answers related to "how to display current date time in flutter"

Code answers related to "Dart"

Browse Popular Code Answers by Language