🔥 ۴۰ درصد تخفیف ثبت‌نام دوره‌ها قبل از افزایش قیمت‌ها
۰ ثانیه
۰ دقیقه
۰ ساعت
۱ پوپک سبحانی
فایل پروژه برای دسترسی به اکستن فانکشن‌ها
پریا هوشیار حل شده توسط پریا هوشیار

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

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

 

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";
}
}
بهترین پاسخ
پریا هوشیار ۱۸ فروردین ۱۴۰۴، ۱۶:۱۳