how to show date from now in flutter code example

Example 1: 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

Example 2: how to show date only in flutter

import 'package:flutter/material.dart';
import 'package:intl/intl.dart';

void main() => runApp(App());

class App extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Current Date Example',
      home: DateExample(),
    );
  }
}


class DateExample extends StatelessWidget {
  const DateExample({Key key}) : super(key: key);

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      body: Center(child: Text(DateFormat("yyyy-MM-dd").format(DateTime.now()))),
    );
  }
}

Tags:

Cpp Example