react-native-action-sheet icon indicating copy to clipboard operation
react-native-action-sheet copied to clipboard

Question: iOS 26 support

Open oferRounds opened this issue 2 months ago • 1 comments

With iOS 26, it's now possible to present the action sheet anchored from a view or bar button item (i.e, from the top bar). Is this option supported?

Thank you!

oferRounds avatar Oct 11 '25 12:10 oferRounds

You can use it like this

showActionSheetWithOptions(
    {
      /* ... your things ... */
      anchor: findNodeHandle(buttonRef.current),
    },
    async (buttonIndex: number) => {
       /* ... do stuff ... */
    },
);
Image

oskarnellfors avatar Nov 05 '25 12:11 oskarnellfors