104 lines
3.1 KiB
Dart
104 lines
3.1 KiB
Dart
import 'package:flutter/material.dart';
|
|
|
|
import '../../../../common/theme/theme.dart';
|
|
import '../../../components/spacer/spacer.dart';
|
|
|
|
class HomeActivityTile extends StatelessWidget {
|
|
final String title;
|
|
final String subtitle;
|
|
final String time;
|
|
final IconData icon;
|
|
final Color color;
|
|
final bool isHighlighted;
|
|
const HomeActivityTile({
|
|
super.key,
|
|
required this.title,
|
|
required this.subtitle,
|
|
required this.time,
|
|
required this.icon,
|
|
required this.color,
|
|
required this.isHighlighted,
|
|
});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Container(
|
|
padding: const EdgeInsets.all(20),
|
|
decoration: BoxDecoration(
|
|
color: isHighlighted ? color.withOpacity(0.02) : Colors.transparent,
|
|
borderRadius: isHighlighted ? BorderRadius.circular(16) : null,
|
|
),
|
|
child: Row(
|
|
children: [
|
|
Container(
|
|
padding: const EdgeInsets.all(12),
|
|
decoration: BoxDecoration(
|
|
gradient: LinearGradient(
|
|
colors: [color.withOpacity(0.1), color.withOpacity(0.05)],
|
|
begin: Alignment.topLeft,
|
|
end: Alignment.bottomRight,
|
|
),
|
|
borderRadius: BorderRadius.circular(12),
|
|
border: Border.all(color: color.withOpacity(0.2), width: 1),
|
|
),
|
|
child: Icon(icon, color: color, size: 20),
|
|
),
|
|
const SpaceWidth(16),
|
|
Expanded(
|
|
child: Column(
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
mainAxisSize: MainAxisSize.min,
|
|
children: [
|
|
Text(
|
|
title,
|
|
style: AppStyle.md.copyWith(
|
|
fontWeight: FontWeight.w600,
|
|
color: AppColor.textPrimary,
|
|
letterSpacing: -0.2,
|
|
),
|
|
maxLines: 1,
|
|
overflow: TextOverflow.ellipsis,
|
|
),
|
|
const SpaceHeight(4),
|
|
Text(
|
|
subtitle,
|
|
style: AppStyle.sm.copyWith(
|
|
color: AppColor.textSecondary,
|
|
fontWeight: FontWeight.w500,
|
|
),
|
|
maxLines: 1,
|
|
overflow: TextOverflow.ellipsis,
|
|
),
|
|
],
|
|
),
|
|
),
|
|
Column(
|
|
crossAxisAlignment: CrossAxisAlignment.end,
|
|
children: [
|
|
Text(
|
|
time,
|
|
style: AppStyle.xs.copyWith(
|
|
fontSize: 11,
|
|
color: AppColor.textLight,
|
|
fontWeight: FontWeight.w500,
|
|
),
|
|
),
|
|
if (isHighlighted) ...[
|
|
const SpaceHeight(4),
|
|
Container(
|
|
width: 6,
|
|
height: 6,
|
|
decoration: BoxDecoration(
|
|
color: color,
|
|
shape: BoxShape.circle,
|
|
),
|
|
),
|
|
],
|
|
],
|
|
),
|
|
],
|
|
),
|
|
);
|
|
}
|
|
}
|