🎉 سال نو، مهارت نو، مشاوره رایگان نقشه راه برنامه نویسی (آفر ویژه ثبت نام قبل از افزایش قیمت 🔥)
۰ ثانیه
۰ دقیقه
۰ ساعت
۱ Mohamad mahdi nasseh
فایل پروژه برای دسترسی به اکستن فانکشن‌ها
یلدا محصلی حل شده توسط یلدا محصلی

سلام لطفا فایل این پروژه رو قرار میدید تا به اکستنشن فانکشن‌ها دسترسی داشته باشیم

سلام. این قسمت منظورتون بود؟

 

extension DurationExtensions on Duration {
/// Converts the duration into a readable string
/// 05:15
String toHoursMinutes() {
String twoDigitMinutes = _toTwoDigits(inMinutes.remainder(60));
return "${_toTwoDigits(inHours)}:$twoDigitMinutes";
}
/// Converts the duration into a readable string
/// 05:15:35
String toHoursMinutesSeconds() {
String twoDigitMinutes = _toTwoDigits(inMinutes.remainder(60));
String twoDigitSeconds = _toTwoDigits(inSeconds.remainder(60));
return "${_toTwoDigits(inHours)}:$twoDigitMinutes:$twoDigitSeconds";
}
String toMinutesSeconds() {
String twoDigitMinutes = _toTwoDigits(inMinutes.remainder(60));
String twoDigitSeconds = _toTwoDigits(inSeconds.remainder(60));
return "$twoDigitMinutes:$twoDigitSeconds";
}
String _toTwoDigits(int n) {
if (n >= 10) return "$n";
return "0$n";
}
}
بهترین پاسخ
یلدا محصلی ۱۸ فروردین ۱۴۰۴، ۱۶:۱۳