BradByte
BradByte
https://github.com/expo/react-native-action-sheet/blob/master/src/ActionSheet/index.tsx#L241-L242 I think this results in the `onPress` being called with the cancelIndex... is that not what you're seeing?
Sorry for the delay :facepalm:. This is essentially Android/Web (non iOS). We would need the ability to position the view based on the anchor node.
We're essentially rendering the sheet over the entire view centered.. https://github.com/expo/react-native-action-sheet/blob/master/src/ActionSheet/index.tsx#L296. This would need to change to coordinates of the element position.
@Asghwor I have the exact same issue.. here's my temporary work around... ```tsx import { AnyMaskedOptions, MaskElement } from "imask"; import { ComponentType,} from "react"; import { IMaskMixin, IMask }...
@StuartCallan thanks for the update! For a real fix, perhaps we need to add some padding to the container? Has anyone replicated it running the action sheet locally and able...
@HungDuc13 I assume you're referring to the custom action sheet? I believe the iOS side would just forward everything to the ActionSheetIOS api.
I don't think the custom action sheet supports that, though I'm sure it could be added. I'm not sure how you would test it on iOS though as I don't...
I'm also having this issue.
For what it's worth, I was able to accomplish something similar using the following... ```tsx ``` This of course will also hide the calendar icon, but that may be ok...