android-tv-app icon indicating copy to clipboard operation
android-tv-app copied to clipboard

Add a solar date library on Mawaqit for TV ( Persian history )

Open MoathALATTAR opened this issue 5 months ago • 0 comments

our brother Ihsan say that it is very important to add this date to mawaqit to increase the number of mosque that use mawaqit

and he send some useful file related to that

gregorian To Jalali (Dart) function

List gregorianToJalali(int gy, int gm, int gd) { var gdm, jy, jm, jd, gy2, days; gdm = [0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334]; gy2 = (gm > 2) ? (gy + 1) : gy; days = 355666 + (365 * gy) + ((gy2 + 3) ~/ 4) - ((gy2 + 99) ~/ 100) + ((gy2 + 399) ~/ 400) + gd + gdm[gm - 1]; jy = -1595 + (33 * (days ~/ 12053)); days %= 12053; jy += 4 * (days ~/ 1461); days %= 1461; if (days > 365) { jy += ((days - 1) ~/ 365); days = (days - 1) % 365; } if (days < 186) { jm = 1 + (days ~/ 31); jd = 1 + (days % 31); } else { jm = 7 + ((days - 186) ~/ 30); jd = 1 + ((days - 186) % 30); } return [jy, jm, jd]; }

This is the Flutter language that Salahuddin's brother needed to transform history 👆👆👆

https://pub.dev/packages/persian_number_utility#%D8%AA%D8%A8%D8%AF%DB%8C%D9%84-%D8%AA%D8%A7%D8%B1%DB%8C%D8%AE-%D9%85%DB%8C%D9%84%D8%A7%D8%AF%DB%8C-%D8%A8%D9%87-%D8%AA%D8%A7%D8%B1%DB%8C%D8%AE-%D8%B4%D9%85%D8%B3%DB%8C-%D8%A7%D8%B2-%D9%85%D8%AA%D9%86

Alireza Nasraleh Zadeh, senior Android programmer, ranked 1st in national Android programming competitions, more than 6 years of experience in analyzing and developing Android software. alireza nasrollahzadeh mobile +989924050569

الأخ معاذ، السلام عليكم ورحمة الله يمكنك بسهولة تحويل التاريخ الميلادي إلى السنة الشمسية في Flutter من خلال مشاهدة الفيديو التعليمي من اليوتيوب وأيضا الأمثلة العملية في العنوان المرسل. https://youtu.be/HDn7eOdyjBA?si=Pi_NNJKefKG7cMp4 https://pub.dev/packages/shamsi_date

لقد تحدثت مع المهندس واقترحوا هذه المكتبة في Flutter، وأرسلت لك الفيديو التدريبي والأمثلة العملية. إذا كان لديك المزيد من الإرشادات، يرجى الرجوع إليها

He said that they will answer any question on WhatsApp in the field of Persian history on Flutter

can you Pls add it as a selected section in mawaqit

thank you

MoathALATTAR avatar Sep 14 '24 12:09 MoathALATTAR