kotlinx-datetime icon indicating copy to clipboard operation
kotlinx-datetime copied to clipboard

KotlinX multiplatform date/time library

Results 147 kotlinx-datetime issues
Sort by recently updated
recently updated
newest added

Hi there! I'm having issues publishing my library (to mavenLocal) when I add `kotlinx-datetime` to my dependencies. I was hoping you could have a look. I have prepared a minimal...

Add an Interval implementation like: ``` data class Interval(val from: Instant, val to: Instant) ```

enhancement

The parameter names are very weird for day-to-day use: ```kt LocalDateTime(year = 2021, monthNumber = 1, dayOfMonth = 1, hour = 12) ``` I don't care that `month` is a...

breaking change

Hey there! I am using this library in a Kotlin Multiplatform Mobile project. All was fine until I began adding Pod dependencies to my Kotlin code, this adds the `linkReleaseFrameworkIos`...

waiting for clarification

Add a type that aligns with the normal calendar and combines TimeZone information with a date.

breaking change

it would be quite good if there was a type (maybe let's call it `OffsetDateTime` to distinguish it from a possible `ZonedDateTime`) that can represent a `LocalDateTime` and ~~`TimeZone`~~ `ZoneOffset`...

formatters

Currently, in order to use time zones in JS you have to add an NPM dependency and custom code: ```kotlin @JsModule("@js-joda/timezone") @JsNonModule external object JsJodaTimeZoneModule private val jsJodaTz = JsJodaTimeZoneModule...

timezone

Hello, I think it'd be great to have natively the ability to know which week number a particular date is from. It's very easy to do with `GregorianCalendar` in the...

enhancement
waiting for clarification
cookbook

It is not included in the documentation so we would like to ask if Kotlinx Datetime has `java.time.format.DateTimeFormatter` equivalent for formatting? Here are the following usage we had with the...

formatters