THE BEST NEWSLETTER ANYWHERE
Join 6,000 subscribers and get a daily digest of full stack tutorials delivered to your inbox directly.No spam ever. Unsubscribe any time.
This example shows how to get the Current Date and time in the Dart or Flutter programming language.
Dart provides the DateTime
class to process Date and Time-related functions.
now()
method returns the current date and time.
Here is an example to get Current Date and time
main() {
DateTime dateTime = DateTime.now();
print(dateTime.toString()); //2022-03-04 12:35:38.997
int currentYear = dateTime.year;
print(currentYear.toString()); //2022
}
Output:
//2022-03-04 12:35:38.997
//2022
This example returns only time in hours, minutes, and seconds and the format is hh:mm:ss
intl/intl.dart
package into programHere is an example
import 'package:intl/intl.dart';
main() {
DateTime dateTime = DateTime.now();
String timeFormat = DateFormat.Hms().format(dateTime);
print(timeFormat); //12:42:49
}
This example gets the current date in MM/DD/YYYY
format only.
intl/intl.dart
package into program using import keywordDateTime
object with now() function.yMd()
function where yMd
is an format(MM/DD/YYYY
) defined by dart.Here is an example
import 'package:intl/intl.dart';
main() {
DateTime dateTime = DateTime.now();
String timeFormat = DateFormat.yMd().format(dateTime);
print(timeFormat); //3/4/2022
}
Learned how to convert String date into DateTime in multiple ways.
🧮 Tags
Recent posts
How to Convert String to Int in swift with example How to Split a String by separator into An array ub swift with example How to disable unused code warnings in Rust example Golang Tutorials - Beginner guide Slice Examples Golang Array tutorials with examplesRelated posts