react-native-action-sheet
react-native-action-sheet copied to clipboard
Question: iOS 26 support
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!
You can use it like this
showActionSheetWithOptions(
{
/* ... your things ... */
anchor: findNodeHandle(buttonRef.current),
},
async (buttonIndex: number) => {
/* ... do stuff ... */
},
);