mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-06 09:13:48 +08:00
@@ -130,7 +130,9 @@ class _WhisperDetailPageState
|
||||
reverse: true,
|
||||
itemCount: loadingState.response!.length,
|
||||
padding: const EdgeInsets.only(bottom: 12),
|
||||
physics: const AlwaysScrollableScrollPhysics(),
|
||||
physics: const AlwaysScrollableScrollPhysics(
|
||||
parent: ClampingScrollPhysics(),
|
||||
),
|
||||
controller: _whisperDetailController.scrollController,
|
||||
itemBuilder: (context, int index) {
|
||||
if (index == loadingState.response!.length - 1) {
|
||||
|
||||
@@ -458,7 +458,7 @@ class ChatItem extends StatelessWidget {
|
||||
return isSystem
|
||||
? messageContent(context)
|
||||
: isRevoke
|
||||
? const SizedBox()
|
||||
? const SizedBox.shrink()
|
||||
: GestureDetector(
|
||||
onLongPress: () {
|
||||
Feedback.forLongPress(context);
|
||||
|
||||
Reference in New Issue
Block a user