
Security News
Open Source Maintainers Demand Ability to Block Copilot-Generated Issues and PRs
Open source maintainers are urging GitHub to let them block Copilot from submitting AI-generated issues and pull requests to their repositories.
github.com/codelabsys/react-native-hijri-date-picker-android
#This Module version is experimental, if you found any issues, kindly submit.
For React Native >= 0.47.0 use v2.+ For React Native < 0.47.0 use v1.0.8
$ npm install react-native-hijri-date-picker-android --save
$ react-native link react-native-hijri-date-picker-android
android/app/src/main/java/[...]/MainActivity.java
import com.reactlibrary.HijriDatePickerAndroidPackage;
to the imports at the top of the filenew HijriDatePickerAndroidPackage()
to the list returned by the getPackages()
methodandroid/settings.gradle
:
include ':react-native-hijri-date-picker-android'
project(':react-native-hijri-date-picker-android').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-hijri-date-picker-android/android')
android/app/build.gradle
:
compile project(':react-native-hijri-date-picker-android')
//first include HijriDatePickerAndroid
import HijriDatePickerAndroid from "react-native-hijri-date-picker-android";
let options = { date: new Date(), minDate: new Date(new Date().getTime() - (1 * 30 * 24 * 60 * 60 * 1000)), maxDate: new Date(new Date().getTime() + (1 * 30 * 24 * 60 * 60 * 1000)) };
let stringOptions = { date: "27-7-1438", minDate: "25-6-1438", maxDate: "29-8-1438" };
//mode:"no_arrows" hide the arrows at the bar of the calendar
//weekDayLabels, override the default day labels at the calendar
let moreOptions = { date: "27-7-1438", minDate: "25-6-1438", maxDate: "29-8-1438", mode:"no_arrows", weekDayLabels:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"]};
//accepts option dates with date objects or strings in the following format ['dd-MM-yyyy']
HijriDatePickerAndroid.open(stringOptions).then(function (result) {
if (result.action == HijriDatePickerAndroid.dismissedAction) {
console.warn("Dismissed");
} else {
let { year, day, month } = result;
console.warn("Hijri Date: " + day + "/" +( month + 1) + "/" + year + "/");
}
});
//convert string Hijri date ['dd-MM-yyyy'] to a gregorian timestamp
HijriDatePickerAndroid.convertHijriDateToGregorianDate("12-7-1438").then(function (result) {
console.warn("Gregorian Timestamp" + JSON.stringify(result));
});
//convert gregorian date object to hijri {year,month,day}
HijriDatePickerAndroid.convertGregorianDateToHijriDate(new Date()).then(function ({ year, day, month }) {
console.warn("Hijri Date: " + day + "/" + month + 1 + "/" + year + "/");
Check out our IOS project react-native-universal-datepicker-ios
This project was made by the help of Assem-Hafez and Mohamed-Abbas for the company we're working at Codelabsys
And is based on the following projects, material-hijri-calendarview and ummalqura-calendar
FAQs
Unknown package
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Open source maintainers are urging GitHub to let them block Copilot from submitting AI-generated issues and pull requests to their repositories.
Research
Security News
Malicious Koishi plugin silently exfiltrates messages with hex strings to a hardcoded QQ account, exposing secrets in chatbots across platforms.
Research
Security News
Malicious PyPI checkers validate stolen emails against TikTok and Instagram APIs, enabling targeted account attacks and dark web credential sales.