“fluatter datetime to string” Kod odpowiedzi

fluatter datetime to string

dependencies:
  intl: ^0.17.0
  
import 'package:intl/intl.dart';

DateFormat dateFormat = DateFormat("yyyy-MM-dd HH:mm:ss");

String string = dateFormat.format(DateTime.now()); //Converting DateTime object to String

DateTime dateTime = dateFormat.parse("2019-07-19 8:40:23"); //Converting String to DateTime object
Sore Serval

Flutter Datetime Format

import 'package:intl/intl.dart';

DateTime now = DateTime.now();
String formattedDate = DateFormat('yyyy-MM-dd – kk:mm').format(now);
S.Mahdi

Flutter String do Datetime Format

DateTime tempDate = new DateFormat("yyyy-MM-dd hh:mm:ss").parse(savedDateString);
Clean Crane

Konwertuj czas Timeofda na smycz

String formatTimeOfDay(TimeOfDay tod) {
    final now = new DateTime.now();
    final dt = DateTime(now.year, now.month, now.day, tod.hour, tod.minute);
    final format = DateFormat.jm();  //"6:00 AM"
    return format.format(dt);
}
Sparkling Stag

Odpowiedzi podobne do “fluatter datetime to string”

Pytania podobne do “fluatter datetime to string”

Więcej pokrewnych odpowiedzi na “fluatter datetime to string” w Dart

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu