DownloadFontsDialogStyle constructor

DownloadFontsDialogStyle({
  1. Color? backgroundColor,
  2. String? defaultFontText,
  3. Color? dividerColor,
  4. String? downloadedFontsText,
  5. Color? downloadButtonBackgroundColor,
  6. TextStyle? downloadingStyle,
  7. String? downloadingText,
  8. TextStyle? fontNameStyle,
  9. Color? iconColor,
  10. double? iconSize,
  11. Widget? iconWidget,
  12. Color? linearProgressBackgroundColor,
  13. Color? linearProgressColor,
  14. String? notes,
  15. Color? notesColor,
  16. TextStyle? notesStyle,
  17. String? title,
  18. Color? titleColor,
  19. TextStyle? titleStyle,
})

A class representing the style for the download fonts dialog.

This class is used to define the visual appearance and behavior of the dialog that is shown when downloading fonts in the Quran Library.

The DownloadFontsDialogStyle constructor allows you to create an instance of this class with specific style properties.

Implementation

DownloadFontsDialogStyle({
  this.backgroundColor,
  this.defaultFontText,
  this.dividerColor,
  this.downloadedFontsText,
  this.downloadButtonBackgroundColor,
  this.downloadingStyle,
  this.downloadingText,
  this.fontNameStyle,
  this.iconColor,
  this.iconSize,
  this.iconWidget,
  this.linearProgressBackgroundColor,
  this.linearProgressColor,
  this.notes,
  this.notesColor,
  this.notesStyle,
  this.title,
  this.titleColor,
  this.titleStyle,
});