buildTime method
Builds a timestamp widget for the given timestamp string.
Uses the custom timeBuilder if provided, otherwise returns a default formatted date display.
Implementation
Widget buildTime(BuildContext context, String timestamp) {
return timeBuilder?.call(context, timestamp) ??
Text(
DateFormat("yyyy.MM.dd").format(DateTime.parse(timestamp)),
style: TextStyle(
fontSize: 14,
fontWeight: FontWeight.w400,
color: const Color(0xFF0D082C).withValues(alpha: 0.4)),
);
}