Skip to content

Instantly share code, notes, and snippets.

@riscait
Created December 15, 2021 22:59
Show Gist options
  • Save riscait/817a141cbae3aaf8d534e066e0606444 to your computer and use it in GitHub Desktop.
Save riscait/817a141cbae3aaf8d534e066e0606444 to your computer and use it in GitHub Desktop.
Format DateTime
import 'package:intl/intl.dart';
void main() {
final now = DateTime.now();
print('isUTC: ${now.isUtc}'); // <- false
print('now: $now'); // <- now: 2021-12-16 07:58:03.661
final hms = DateFormat.Hms().format(now);
print('hms: $hms'); // <- hms: 07:58:03
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment