icon property
IconData
get
icon
الأيقونة الافتراضية لكل وضع
Implementation
IconData get icon {
switch (this) {
case QuranDisplayMode.defaultMode:
return Icons.menu_book_rounded;
case QuranDisplayMode.singleScrollable:
return Icons.view_day_rounded;
case QuranDisplayMode.dualPage:
return Icons.auto_stories_rounded;
case QuranDisplayMode.quranWithTafsirSide:
return Icons.chrome_reader_mode_rounded;
case QuranDisplayMode.ayahWithTafsirInline:
return Icons.article_rounded;
}
}