Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
io.github.bobbysandhu:unified-date-time-picker-kt
Advanced tools
A library to manage Date & Time with a single UI component.
UnifiedDateTimePicker would help you pick Date and Time with just single UI component. It's inspired & took from Telegram and extended with all the customization to fulfill the needs of any modern app.
Java version of the library is also available here:
UnifiedDateTimePicker.Builder(this)
.title("Select Date and Time")
.addListener(object : OnDateTimeSelectedListener {
override fun onDateTimeSelected(millis: Long) {
val sdf = SimpleDateFormat(DATE_FORMAT_Z, Locale.ROOT)
val calendar: Calendar = Calendar.getInstance()
calendar.timeInMillis = millis
binding.textDateTime.text = sdf.format(calendar.time)
}
override fun onPickerDismissed(millis: Long) {
/* no use as of now */
}
})
.show();
With default setting it would look like this:
UnifiedDateTimePicker.Builder(this)
.title("Select Date and Time")
.titleTextColor(R.color.white)
.backgroundColor(R.color.big_stone)
.dateTimeTextColor(R.color.white)
.buttonColor(R.color.picton_blue)
.buttonTextColor(R.color.white)
.vibration(true) //heptic feedback when values are scrolled
.setTodayText("Today") //new
.setLocale(Locale.getDefault() ?: Locale.ENGLISH) //new
.setButtonText(
"'Today' HH:mm",
"'Send on' d MMM yyyy 'at' HH:mm",
"'Send on' d MMM yyyy 'at' HH:mm"
) //new
//.setDateTimeMillis(/* long milliseconds*/)
.addListener(object : OnDateTimeSelectedListener {
override fun onDateTimeSelected(millis: Long) {
val sdf = SimpleDateFormat(DATE_FORMAT_Z, Locale.ROOT)
val calendar: Calendar = Calendar.getInstance()
calendar.timeInMillis = millis
binding.textDateTime.text = sdf.format(calendar.time)
}
override fun onPickerDismissed(millis: Long) {
/* no use as of now */
}
})
.show();
With all these customizations applied, it would look like:
// Top level build file
repositories {
// Add this to the end of any existing repositories
mavenCentral()
}
// app level dependencies section
dependencies {
implementation 'io.github.bobbysandhu:unified-date-time-picker-kt:1.1.0'
}
Want to extend the feature, have any improvement or bug fix?
You can contribute and help the community. All you need to do is share your PR with clear message. That's it!!
FAQs
A library to manage Date & Time with a single UI component.
We found that io.github.bobbysandhu:unified-date-time-picker-kt demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 0 open source maintainers collaborating on the project.
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.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.