16 lines
614 B
Dart
16 lines
614 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:news/ui/widgets/customTextLabel.dart';
|
|
import 'package:news/utils/uiUtils.dart';
|
|
|
|
Widget dateView(BuildContext context, String date) {
|
|
return Row(
|
|
children: [
|
|
const Icon(Icons.access_time_filled_rounded, size: 15),
|
|
const SizedBox(width: 3),
|
|
CustomTextLabel(
|
|
text: UiUtils.convertToAgo(context, DateTime.parse(date), 0)!,
|
|
textStyle: Theme.of(context).textTheme.bodySmall?.copyWith(color: UiUtils.getColorScheme(context).primaryContainer.withOpacity(0.8), fontSize: 12.0, fontWeight: FontWeight.w600))
|
|
],
|
|
);
|
|
}
|