“трепетать DateTime to String” Ответ

трепетать 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

Переверните строку в формат DateTime

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

преобразовать время в течение дня в струн

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

Ответы похожие на “трепетать DateTime to String”

Вопросы похожие на “трепетать DateTime to String”

Больше похожих ответов на “трепетать DateTime to String” по Dart

Смотреть популярные ответы по языку

Смотреть другие языки программирования