mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-06 09:13:48 +08:00
66 lines
2.0 KiB
Dart
66 lines
2.0 KiB
Dart
import 'package:PiliPlus/grpc/app/dynamic/v2/dynamic.pb.dart';
|
|
import 'package:PiliPlus/pages/dynamics/widgets/author_panel_grpc.dart';
|
|
import 'package:PiliPlus/pages/dynamics/widgets/content_panel_grpc.dart';
|
|
import 'package:PiliPlus/utils/utils.dart';
|
|
import 'package:flutter/material.dart';
|
|
|
|
class DynamicPanelGrpc extends StatelessWidget {
|
|
final DynamicItem item;
|
|
final String? source;
|
|
final Function? onRemove;
|
|
|
|
const DynamicPanelGrpc({
|
|
required this.item,
|
|
this.source,
|
|
this.onRemove,
|
|
super.key,
|
|
});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Container(
|
|
padding: source == 'detail'
|
|
? const EdgeInsets.only(bottom: 12)
|
|
: EdgeInsets.zero,
|
|
// decoration: BoxDecoration(
|
|
// border: Border(
|
|
// bottom: BorderSide(
|
|
// width: 8,
|
|
// color: Theme.of(context).dividerColor.withOpacity(0.05),
|
|
// ),
|
|
// ),
|
|
// ),
|
|
child: Material(
|
|
elevation: 0,
|
|
clipBehavior: Clip.hardEdge,
|
|
color: Theme.of(context).cardColor.withOpacity(0.5),
|
|
shape: RoundedRectangleBorder(
|
|
borderRadius: BorderRadius.circular(5),
|
|
),
|
|
child: InkWell(
|
|
onTap: source == 'detail' && item.itemType == DynamicType.draw
|
|
? null
|
|
: () => Utils.pushDynDetail(item, 1),
|
|
child: Column(
|
|
mainAxisAlignment: MainAxisAlignment.start,
|
|
children: [
|
|
Padding(
|
|
padding: const EdgeInsets.fromLTRB(12, 12, 12, 6),
|
|
child: AuthorPanelGrpc(
|
|
item: item,
|
|
source: source,
|
|
onRemove: onRemove,
|
|
),
|
|
),
|
|
ContentGrpc(item: item, source: source),
|
|
// forWard(item, context, _dynamicsController, source),
|
|
const SizedBox(height: 2),
|
|
// if (source == null) ActionPanel(item: item),
|
|
],
|
|
),
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|