Skip to content

Instantly share code, notes, and snippets.

@GuilhE
Last active May 9, 2024 13:24
Show Gist options
  • Save GuilhE/7a520fe2d8c612943f7712223b345fe4 to your computer and use it in GitHub Desktop.
Save GuilhE/7a520fe2d8c612943f7712223b345fe4 to your computer and use it in GitHub Desktop.
Medium articles - What's Native
//commonMain
internal expect class Platform() {
fun formatDateTimeWithLocale(date: LocalDate, pattern: String): String
}
//will print for example 09 Março, 09 March, 3月9日...
println(Platform().formatDateTimeWithLocale(LocalDate(2024, 3, 9), "dd MMMM"))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment