56 lines
1.7 KiB
Dart
56 lines
1.7 KiB
Dart
// 操作栏
|
|
import 'package:flutter/material.dart';
|
|
import 'package:font_awesome_flutter/font_awesome_flutter.dart';
|
|
import 'package:get/get.dart';
|
|
import 'package:pilipala/models/dynamics/result.dart';
|
|
import 'package:pilipala/pages/dynamics/index.dart';
|
|
|
|
final DynamicsController _dynamicsController = Get.put(DynamicsController());
|
|
|
|
Widget action(item, context) {
|
|
ModuleStatModel stat = item.modules.moduleStat;
|
|
|
|
return Row(
|
|
mainAxisAlignment: MainAxisAlignment.spaceAround,
|
|
children: [
|
|
TextButton.icon(
|
|
onPressed: () {},
|
|
icon: const Icon(
|
|
FontAwesomeIcons.shareFromSquare,
|
|
size: 16,
|
|
),
|
|
style: TextButton.styleFrom(
|
|
padding: const EdgeInsets.fromLTRB(15, 0, 15, 0),
|
|
foregroundColor: Theme.of(context).colorScheme.outline,
|
|
),
|
|
label: Text(stat.forward!.count ?? '转发'),
|
|
),
|
|
TextButton.icon(
|
|
onPressed: () =>
|
|
_dynamicsController.pushDetail(item, 1, action: 'comment'),
|
|
icon: const Icon(
|
|
FontAwesomeIcons.comment,
|
|
size: 16,
|
|
),
|
|
style: TextButton.styleFrom(
|
|
padding: const EdgeInsets.fromLTRB(15, 0, 15, 0),
|
|
foregroundColor: Theme.of(context).colorScheme.outline,
|
|
),
|
|
label: Text(stat.comment!.count ?? '评论'),
|
|
),
|
|
TextButton.icon(
|
|
onPressed: () {},
|
|
icon: const Icon(
|
|
FontAwesomeIcons.thumbsUp,
|
|
size: 16,
|
|
),
|
|
style: TextButton.styleFrom(
|
|
padding: const EdgeInsets.fromLTRB(15, 0, 15, 0),
|
|
foregroundColor: Theme.of(context).colorScheme.outline,
|
|
),
|
|
label: Text(stat.like!.count ?? '点赞'),
|
|
)
|
|
],
|
|
);
|
|
}
|