Skip to content

Instantly share code, notes, and snippets.

@Wajahat-Jawaid
Created November 2, 2022 13:32
Show Gist options
  • Save Wajahat-Jawaid/09cd85b5e12b837ea9175c1779ddfa85 to your computer and use it in GitHub Desktop.
Save Wajahat-Jawaid/09cd85b5e12b837ea9175c1779ddfa85 to your computer and use it in GitHub Desktop.
fun Long.formattedDate(): String {
val sdf = SimpleDateFormat("dd MMM, yyyy HH:mm", Locale.getDefault())
return sdf.format(this)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment