v0.0.5islamic_hijri_calendar
イスラム暦(ヒジュラ暦)カレンダーウィジェットは、アラビア語および英数字で日付を表示し、ヒジュラ月の名前と年を表示し、簡単な月間ナビゲーションを可能にします。
44いいね 6430日間ダウンロード160Pub ポイント
AndroidiOSWebmacOSWindowsLinux
イスラム暦(ヒジュラ暦)カレンダーウィジェットをご紹介します。アラビア語と英語の数字を併用した包括的な日付表示を提供しています。ヒジュラ月の名前と年を簡単に確認でき、月間の移動もスムーズです。
{"sdk":"flutter"}^0.20.2^8.0.2^6.0.0{"sdk":"flutter"}以下は英語原文のスナップショットです。最新版は GitHub をご覧ください。
Introducing our Islamic Hijri Calendar widget, offering a comprehensive date display with both Arabic and English numerals. Easily view Hijri month names alongside the year and navigate through months effortlessly.
Dart Extensions Pro contributorsAdd dependency to your pubspec.yaml file & run Pub get
dependencies:
islamic_hijri_calendar: ^0.0.5
And import package into your class file
import 'package:islamic_hijri_calendar/islamic_hijri_calendar.dart';
IslamicHijriCalendar(
isHijriView: true, // allowing users to set either the English calendar only or display the Hijri calendar alongside the English calendar
highlightBorder : Theme.of(context).colorScheme.primary, // Set selected date border color
defaultBorder : Theme.of(context).colorScheme.onBackground.withValues(alpha:0.1), // Set default date border color
highlightTextColor : Theme.of(context).colorScheme.background, // Set today date text color
defaultTextColor : Theme.of(context).colorScheme.onBackground, //Set others dates text color
defaultBackColor : Theme.of(context).colorScheme.background, // Set default date background color
adjustmentValue: 0, // Set islamic hijri calendar adjustment value which is set by user side
isGoogleFont: true, // Set it true if you want to use google fonts else false
fontFamilyName: "Lato", // Set your custom font family name or google font name
getSelectedEnglishDate: (selectedDate){ // returns the date selected by user
print("English Date : $selectedDate");
},
getSelectedHijriDate: (selectedDate){ // returns the date selected by user in Hijri format
print("Hijri Date : $selectedDate");
},
isDisablePreviousNextMonthDates: true, // Set dates which are not included in current month should show disabled or enabled
),
| Property | Types | Description |
|---|---|---|
| isHijriView | bool? | allowing users to set either the English calendar only or display the Hijri calendar alongside the English calendar |
| highlightBorder | Color? | Set selected date border color |
| defaultBorder | Color? | Set default date border color |
| highlightTextColor | Color? | Set today date text color |
| defaultTextColor | Color? | Set others dates text color |
| defaultBackColor | Color? | Set default date background color |
| adjustmentValue | int | Set hijri calendar adjustment value which is set by user side |
| isGoogleFont | bool? | Set it true if you want to use google fonts else false |
| fontFamilyName | String? | Set your custom font family name or google font name |
| getSelectedEnglishDate | return selectedDate | returns the date selected by user |
| getSelectedHijriDate | return selectedDate | returns the date selected by user in Hijri format |
| isDisablePreviousNextMonthDates | bool? | Set dates which are not included in current month should show disabled or enabled |
Made with ❤️ by the DevCodeSpace