Android - LocalTime

data class Article(
   val id: Int,
   val title: String,
   val description: String,
   val created: LocalDateTime,
)

val Article.createdText: String get() = articleDateFormatter.format(created)

private val articleDateFormatter = DateTimeFormatter.ofPattern("dd MMM yyyy")
 

...繼續閱讀 »