Horje
flutter get current date Code Example
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
how to display current date time in flutter
DateTime now = new DateTime.now();
DateTime date = new DateTime(now.year, now.month, now.day);
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
} 
how to display current date time in flutter
DateTime dateToday = DateTime(DateTime.now().year, DateTime.now().month, DateTime.now().day) ; 
flutter get current date
String datetime = DateTime.now().toString();
print(datetime);
// 2021-08-27 19:14:57.142575




5

Related
flutter use png as icon Code Example flutter use png as icon Code Example
how to add padding flutter Code Example how to add padding flutter Code Example
flutter list tile Code Example flutter list tile Code Example
underline text in flutter Code Example underline text in flutter Code Example
asset image in circle avatar flutter Code Example asset image in circle avatar flutter Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
12