Advertisement
easyswiftui

Untitled

May 24th, 2024
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Dart 1.55 KB | None | 0 0
  1. TaibEntry taibEntry = TaibEntry(
  2.   taibDate: "27 Шавваль 1441",
  3.   location: "Мадина",
  4.   twoPrayers: [
  5.     TwoPrayItems(
  6.       icon: 'icon',
  7.       name: 'Зухр',
  8.       time: '12:09',
  9.       isPicked: true,
  10.     ),
  11.     TwoPrayItems(
  12.       icon: 'icon',
  13.       name: 'Аср',
  14.       time: '14:51',
  15.       isPicked: false,
  16.     ),
  17.   ],
  18.   prayers: [
  19.     PrayItem(
  20.       icon: 'icon',
  21.       name: 'Фаджр',
  22.       time: '05:20',
  23.       isPicked: true,
  24.     ),
  25.     PrayItem(
  26.       icon: 'icon',
  27.       name: 'Восход',
  28.       time: '05:56',
  29.       isPicked: false,
  30.     ),
  31.     PrayItem(
  32.       icon: 'icon',
  33.       name: 'Зухр',
  34.       time: '12:00',
  35.       isPicked: false,
  36.     ),
  37.     PrayItem(
  38.       icon: 'icon',
  39.       name: 'Аср',
  40.       time: '14:51',
  41.       isPicked: false,
  42.     ),
  43.     PrayItem(
  44.       icon: 'icon',
  45.       name: 'Магриб',
  46.       time: '17:20',
  47.       isPicked: false,
  48.     ),
  49.         PrayItem(
  50.       icon: 'icon',
  51.       name: 'Иша',
  52.       time: '18:35',
  53.       isPicked: false,
  54.     ),
  55.   ],
  56.   currentPrayItem: CurrentPrayItem(
  57.     currentPrayName: 'Зухр',
  58.     currentPrayTime: '12:09',
  59.     progress: 0.75,
  60.     timeBeforeNextPray: '02:48:59',
  61.     nextPrayName: 'Аср',
  62.     nextPrayTime: '14:51',
  63.   ),
  64.   reminderItem: ReminderItem(
  65.     startIcon: 'icon',
  66.     startName: 'Восход',
  67.     startTime: '06:20',
  68.     endIcon: 'icon',
  69.     endTime: '02:25',
  70.     endName: 'Треть ночи',
  71.     progress: 0.5,
  72.     reminderText: 'Не забудь Духа намаз!',
  73.   ),
  74. );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement