chore: Follow up select event handling

This commit is contained in:
krille-chan 2023-11-05 17:02:30 +01:00
parent 809ee213b6
commit c313b03f71
No known key found for this signature in database
2 changed files with 94 additions and 94 deletions

View file

@ -98,8 +98,7 @@ class ChatEventList extends StatelessWidget {
child: event.isVisibleInGui
? Message(
event,
onSwipe: (direction) =>
controller.replyAction(replyTo: event),
onSwipe: () => controller.replyAction(replyTo: event),
onInfoTab: controller.showEventInfo,
onAvatarTab: (Event event) => showAdaptiveBottomSheet(
context: context,

View file

@ -25,7 +25,7 @@ class Message extends StatelessWidget {
final void Function(Event)? onAvatarTab;
final void Function(Event)? onInfoTab;
final void Function(String)? scrollToEventId;
final void Function(SwipeDirection) onSwipe;
final void Function() onSwipe;
final bool longPressSelect;
final bool selected;
final Timeline timeline;
@ -116,7 +116,6 @@ class Message extends StatelessWidget {
final row = InkWell(
onTap: longPressSelect ? () => onSelect!(event) : null,
onLongPress: () => onSelect!(event),
child: HoverBuilder(
builder: (context, hovered) => Row(
crossAxisAlignment: CrossAxisAlignment.start,
@ -195,6 +194,7 @@ class Message extends StatelessWidget {
Container(
alignment: alignment,
padding: const EdgeInsets.only(left: 8),
child: IgnorePointer(
child: Material(
color: noBubble ? Colors.transparent : color,
borderRadius: borderRadius,
@ -293,6 +293,7 @@ class Message extends StatelessWidget {
),
),
),
),
],
),
),
@ -392,11 +393,11 @@ class Message extends StatelessWidget {
background: const Padding(
padding: EdgeInsets.symmetric(horizontal: 12.0),
child: Center(
child: Icon(Icons.reply_outlined),
child: Icon(Icons.check_outlined),
),
),
direction: SwipeDirection.endToStart,
onSwipe: onSwipe,
onSwipe: (_) => onSelect?.call(event),
child: Center(
child: Container(
color: selected