Skip to content

Instantly share code, notes, and snippets.

@hectorAguero
Last active August 13, 2020 20:57
Show Gist options
  • Save hectorAguero/f76fbc49c1fad79c72f63614889b08f3 to your computer and use it in GitHub Desktop.
Save hectorAguero/f76fbc49c1fad79c72f63614889b08f3 to your computer and use it in GitHub Desktop.
Flutter DateTime Forma to String
import 'package:flutter/material.dart';
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
debugShowCheckedModeBanner: false,
home: Scaffold(
body: Center(
child: MyWidget(),
),
),
);
}
}
class MyWidget extends StatelessWidget {
final date = DateTime.now();
@override
Widget build(BuildContext context) {
return Text(date.toCL);
}
}
extension FechaChilena on DateTime {
String get toCL {
if (this != null) {
return '${day.toString().padLeft(2, '0')}-${month.toString().padLeft(2, '0')}-$year';
} else {
return '';
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment