🗑️ The silver paging helper is merged, remove the one inside the own codebase
49 lines
1.4 KiB
Dart
49 lines
1.4 KiB
Dart
import 'package:flutter/material.dart';
|
|
import 'package:hooks_riverpod/hooks_riverpod.dart';
|
|
import 'package:island/models/post.dart';
|
|
import 'package:island/widgets/content/sheet.dart';
|
|
import 'package:island/widgets/post/post_replies.dart';
|
|
import 'package:island/widgets/post/post_quick_reply.dart';
|
|
import 'package:easy_localization/easy_localization.dart';
|
|
import 'package:styled_widget/styled_widget.dart';
|
|
|
|
class PostRepliesSheet extends HookConsumerWidget {
|
|
final SnPost post;
|
|
|
|
const PostRepliesSheet({super.key, required this.post});
|
|
|
|
@override
|
|
Widget build(BuildContext context, WidgetRef ref) {
|
|
return SheetScaffold(
|
|
titleText: 'repliesCount'.plural(post.repliesCount),
|
|
child: Column(
|
|
children: [
|
|
// Replies list
|
|
Expanded(
|
|
child: CustomScrollView(
|
|
slivers: [PostRepliesList(
|
|
postId: post.id.toString(),
|
|
backgroundColor: Colors.transparent,
|
|
)],
|
|
),
|
|
),
|
|
// Quick reply section
|
|
Material(
|
|
elevation: 2,
|
|
child: PostQuickReply(
|
|
parent: post,
|
|
onPosted: () {
|
|
ref.invalidate(postRepliesNotifierProvider(post.id));
|
|
},
|
|
).padding(
|
|
bottom: MediaQuery.of(context).padding.bottom + 16,
|
|
top: 16,
|
|
horizontal: 16,
|
|
),
|
|
),
|
|
],
|
|
),
|
|
);
|
|
}
|
|
}
|