100 lines
3.1 KiB
Dart
100 lines
3.1 KiB
Dart
import 'package:easy_localization/easy_localization.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:gap/gap.dart';
|
|
import 'package:material_symbols_icons/symbols.dart';
|
|
import 'package:styled_widget/styled_widget.dart';
|
|
import 'package:surface/types/post.dart';
|
|
import 'package:surface/widgets/account/account_image.dart';
|
|
|
|
class PublisherPopoverCard extends StatelessWidget {
|
|
final SnPublisher data;
|
|
const PublisherPopoverCard({super.key, required this.data});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Column(
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
mainAxisSize: MainAxisSize.min,
|
|
children: [
|
|
Row(
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: [
|
|
AccountImage(
|
|
content: data.avatar,
|
|
radius: 20,
|
|
),
|
|
Gap(16),
|
|
Expanded(
|
|
child: Column(
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
mainAxisSize: MainAxisSize.min,
|
|
children: [
|
|
Text(data.nick).bold(),
|
|
Text('@${data.name}').fontSize(13).opacity(0.75),
|
|
],
|
|
),
|
|
),
|
|
IconButton(
|
|
onPressed: () {},
|
|
icon: const Icon(Symbols.chevron_right),
|
|
padding: EdgeInsets.zero,
|
|
visualDensity: const VisualDensity(horizontal: -4, vertical: -4),
|
|
),
|
|
const Gap(8)
|
|
],
|
|
),
|
|
const Gap(16),
|
|
Row(
|
|
children: [
|
|
Expanded(
|
|
child: Column(
|
|
mainAxisSize: MainAxisSize.min,
|
|
crossAxisAlignment: CrossAxisAlignment.center,
|
|
children: [
|
|
Text('publisherSocialPoint').tr().fontSize(13).opacity(0.75),
|
|
Text((data.totalUpvote - data.totalDownvote).toString()),
|
|
],
|
|
),
|
|
),
|
|
SizedBox(
|
|
height: 20,
|
|
child: const VerticalDivider(
|
|
thickness: 1,
|
|
),
|
|
).padding(horizontal: 8),
|
|
Expanded(
|
|
child: Column(
|
|
mainAxisSize: MainAxisSize.min,
|
|
crossAxisAlignment: CrossAxisAlignment.center,
|
|
children: [
|
|
Text('publisherTotalUpvote').tr().fontSize(13).opacity(0.75),
|
|
Text(data.totalUpvote.toString()),
|
|
],
|
|
),
|
|
),
|
|
SizedBox(
|
|
height: 20,
|
|
child: const VerticalDivider(
|
|
thickness: 1,
|
|
),
|
|
).padding(horizontal: 8),
|
|
Expanded(
|
|
child: Column(
|
|
mainAxisSize: MainAxisSize.min,
|
|
crossAxisAlignment: CrossAxisAlignment.center,
|
|
children: [
|
|
Text('publisherTotalDownvote')
|
|
.tr()
|
|
.fontSize(13)
|
|
.opacity(0.75),
|
|
Text(data.totalDownvote.toString()),
|
|
],
|
|
),
|
|
),
|
|
],
|
|
),
|
|
],
|
|
);
|
|
}
|
|
}
|