fontsDownloadProgress property

double get fontsDownloadProgress

للحصول على تقدم تنزيل الخطوط، ما عليك سوى إستدعاء fontsDownloadProgress

to get fonts download progress just call fontsDownloadProgress

Implementation

double get fontsDownloadProgress {
  // قيمة تقدم التحميل كنسبة مئوية من 0 إلى 100
  // Download progress value as a percentage from 0 to 100
  double progress = quranCtrl.state.fontsDownloadProgress.value;
  // التحويل إلى قيمة بين 0 و 1 للاستخدام في LinearProgressIndicator
  // Convert to a value between 0 and 1 for use in LinearProgressIndicator
  return progress / 100;
}