Answers for "covert times to am pm flutter"

7

flutter date time to timestamp

DateTime currentPhoneDate = DateTime.now(); //DateTime

Timestamp myTimeStamp = Timestamp.fromDate(currentPhoneDate); //To TimeStamp

DateTime myDateTime = myTimeStamp.toDate(); // TimeStamp to DateTime

print("current phone data is: $currentPhoneDate");
print("current phone data is: $myDateTime");
Posted by: Guest on June-22-2020
0

format datetime to am/pm in flutter

print(new DateFormat.yMMMd().format(new DateTime.now()));
Posted by: Guest on October-28-2021

Code answers related to "Dart"

Browse Popular Code Answers by Language