Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2025-06-13 11:49:38 +08:00
parent f824477ddb
commit c05fbde3fa
106 changed files with 2780 additions and 3200 deletions

View File

@@ -17,90 +17,93 @@ class ArticleListItem extends StatelessWidget {
@override
Widget build(BuildContext context) {
final theme = Theme.of(context);
return InkWell(
onTap: () {
final dynIdStr = item.dynIdStr;
Get.toNamed(
'/articlePage',
parameters: {
'id': dynIdStr ?? item.id!.toString(),
'type': dynIdStr != null ? 'opus' : 'read',
},
);
},
child: Padding(
padding: const EdgeInsets.symmetric(
horizontal: StyleString.safeSpace,
vertical: 5,
),
child: Row(
spacing: 10,
crossAxisAlignment: CrossAxisAlignment.start,
children: [
if (item.imageUrls?.isNotEmpty == true)
AspectRatio(
aspectRatio: StyleString.aspectRatio,
child: LayoutBuilder(
builder: (context, boxConstraints) {
return NetworkImgLayer(
src: item.imageUrls!.first,
width: boxConstraints.maxWidth,
height: boxConstraints.maxHeight,
);
},
),
),
Expanded(
child: Column(
mainAxisSize: MainAxisSize.min,
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Text(
item.title!,
style: const TextStyle(
fontSize: 14,
height: 1.42,
letterSpacing: 0.3,
),
maxLines: 2,
overflow: TextOverflow.ellipsis,
return Material(
type: MaterialType.transparency,
child: InkWell(
onTap: () {
final dynIdStr = item.dynIdStr;
Get.toNamed(
'/articlePage',
parameters: {
'id': dynIdStr ?? item.id!.toString(),
'type': dynIdStr != null ? 'opus' : 'read',
},
);
},
child: Padding(
padding: const EdgeInsets.symmetric(
horizontal: StyleString.safeSpace,
vertical: 5,
),
child: Row(
spacing: 10,
crossAxisAlignment: CrossAxisAlignment.start,
children: [
if (item.imageUrls?.isNotEmpty == true)
AspectRatio(
aspectRatio: StyleString.aspectRatio,
child: LayoutBuilder(
builder: (context, boxConstraints) {
return NetworkImgLayer(
src: item.imageUrls!.first,
width: boxConstraints.maxWidth,
height: boxConstraints.maxHeight,
);
},
),
const SizedBox(height: 3),
if (item.summary != null)
),
Expanded(
child: Column(
mainAxisSize: MainAxisSize.min,
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Text(
item.summary!,
style: TextStyle(
fontSize: 12,
color: theme.colorScheme.outline,
item.title!,
style: const TextStyle(
fontSize: 14,
height: 1.42,
letterSpacing: 0.3,
),
maxLines: 1,
maxLines: 2,
overflow: TextOverflow.ellipsis,
),
const Spacer(),
Row(
spacing: 16,
children: [
StatWidget(
value: item.stats?.view,
color: theme.colorScheme.outline,
type: StatType.view,
const SizedBox(height: 3),
if (item.summary != null)
Text(
item.summary!,
style: TextStyle(
fontSize: 12,
color: theme.colorScheme.outline,
),
maxLines: 1,
overflow: TextOverflow.ellipsis,
),
StatWidget(
type: StatType.like,
value: item.stats?.like,
color: theme.colorScheme.outline,
),
StatWidget(
type: StatType.reply,
value: item.stats?.reply,
color: theme.colorScheme.outline,
),
],
),
],
const Spacer(),
Row(
spacing: 16,
children: [
StatWidget(
value: item.stats?.view,
color: theme.colorScheme.outline,
type: StatType.view,
),
StatWidget(
type: StatType.like,
value: item.stats?.like,
color: theme.colorScheme.outline,
),
StatWidget(
type: StatType.reply,
value: item.stats?.reply,
color: theme.colorScheme.outline,
),
],
),
],
),
),
),
],
],
),
),
),
);