CupertinoContextMenu on LongPressAnimation going behind the screen

This issue has been tracked since 2023-03-18.
  1. I would like to incorporate a CupertinoContextMenu into a CupertinoListTile in my Flutter application. However, upon performing a long press on the item, a portion of it disappears off-screen. How can I go about remedying this issue? Alternatively, is there a way to decrease the scale of the animation to resolve this problem?

Expected results: I would like to change CupertinoContextMenu animation

Actual results: Youtube video showing the bug

Code sample
 return CupertinoContextMenu(
      actions: [
        CupertinoContextMenuAction(
          child: const Text('Edit'),
          onPressed: () {
            //TODO: Handle the edit action
          },
        ),
        CupertinoContextMenuAction(
          child: const Text('Show'),
          onPressed: () {
            //TODO: Handle the show action
          },
        ),
      ],
      child: SizedBox(
        width: MediaQuery.of(context).size.width,
        child: CupertinoListTile(
          backgroundColor: CupertinoColors.white,
          padding: const EdgeInsets.symmetric(horizontal: 20, vertical: 16),
          title: Text(event.name, style: const TextStyle(fontSize: 20),),
          subtitle: Text(event.formattedDate, style: const TextStyle(fontSize: 16),),
          trailing: const CupertinoListTileChevron(),
        ),
      ),
    );
Logs
[✓] Flutter (Channel stable, 3.7.5, on macOS 13.2.1 22D68 darwin-arm64, locale pl-PL)
    • Flutter version 3.7.5 on channel stable at /Users/kacperwojak/development/flutter
    • Upstream repository https://github.com/flutter/flutter.git
    • Framework revision c07f788888 (3 weeks ago), 2023-02-22 17:52:33 -0600
    • Engine revision 0f359063c4
    • Dart version 2.19.2
    • DevTools version 2.20.1



[✓] Xcode - develop for iOS and macOS (Xcode 14.2)
    • Xcode at /Applications/Xcode.app/Contents/Developer
    • Build 14C18
    • CocoaPods version 1.11.3


More Details About Repo
Owner Name flutter
Repo Name flutter
Full Name flutter/flutter
Language Dart
Created Date 2015-03-06
Updated Date 2023-03-30
Star Count 151602
Watcher Count 3555
Fork Count 25000
Issue Count 11498

YOU MAY BE INTERESTED

Issue Title Created Date Updated Date