Answers for "time record flutter"

4

flutter time count

Timer _timer;
  int seconds = 0;
  int minutes = 0;
  int hours = 0;
  void startTimer() {
    const oneSec = const Duration(seconds: 1);
    _timer = new Timer.periodic(
      oneSec,
      (Timer timer) => setState(
        () {
          if (seconds < 0) {
            timer.cancel();
          } else {
            seconds = seconds + 1;
            if (seconds > 59) {
              minutes += 1;
              seconds = 0;
              if (minutes > 59) {
                hours += 1;
                minutes = 0;
              }
            }
          }
        },
      ),
    );
  }
Posted by: Guest on November-05-2020
4

flutter date time

var now = new DateTime.now();
var moonLanding = DateTime.parse(now);

moonLanding.year; 
moonLanding.hour;  
moonLanding.month; 

moonLanding.year.toString() + '-' + moonLanding.month.toString() + '-' + moonLanding.day.toString()

############################ OR ###########################

import 'package:intl/intl.dart';

var dt = DateTime.now();
var newFormat = DateFormat("yy-MM-dd");
String updatedDt = newFormat.format(dt);
print(updatedDt); // 20-04-03

var newDt = DateFormat.yMMMEd().format(dt);
print(newDt);  // Fri, Apr 3, 2020

reference :
https://medium.com/flutter-community/working-with-dates-in-dart-e81c70911811
Posted by: Guest on February-28-2021

Code answers related to "Dart"

Browse Popular Code Answers by Language