Created
January 8, 2025 02:58
-
-
Save yeansang/1fb490afa01e853d6cbb561db495e380 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/// TODO: Date 객체를 받아서 해당 시간이 현재 시간으로부터 60분 전까지는 "mm분전"으로 24시간 전까지는 "HH시간전"으로 7일 전까지는 "dd일전"으로 52주 전까지는 "WW주전"으로 1년 전부터는 "yyyy년전"으로 표시하는 함수 작성 | |
String getFormattedTime(DateTime date) { | |
return ""; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment