-
[Flutter] 상대 시간 표시하기Flutter 2024. 1. 28. 16:45
날짜를 표기할 때 몇일 전, 3개월 전 과 같이 상대 시간을 표기해주고 싶을 때 timeago 패키지를 사용해줄 수 있다.
1. timeago 패키지를 추가한다.
// pubspec.yaml dependencies: flutter: sdk: flutter timeago: any
2. import 한다.
import 'package:timeago/timeago.dart' as timeago;
3. timeago 사용하기
원하는 언어를 지정해줄 때 locale을 사용한다. 아래는 한국어 표기 예시다.
final createdDate = DateTime.now(); // 원하는 DateTime ... Text(timeago.format(createdDate, locale: 'ko')
'Flutter' 카테고리의 다른 글
Exception `require': cannot load such file -- xcodeproj (LoadError) / flutterfire configure --project= (0) 2024.05.16 zsh: command not found: flutterfire (0) 2024.05.16 [Flutter] 동적 리스트 ListView (0) 2024.04.29 [Flutter] 프로젝트를 clone 했는데 패키지를 찾을 수 없을 때 (0) 2024.01.29 [Flutter] asset Image 추가하기 (0) 2024.01.28