We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
on iOS, ActionSheet is detached by default i.e. there is a gap between screen bottom and sheet bottom
is this expected? i don't mind all that much because the fix is easy but just wanted to make sure
current workaround:
const MySheet = (props: ActionSheetProps & { detached?: boolean }) => { const safeInsets = useSafeAreaInsets() const insets = { ...safeInsets, bottom: props.detached ? safeInsets.bottom : 0, } return ( <ActionSheet safeAreaInsets={insets}
The text was updated successfully, but these errors were encountered:
No branches or pull requests
on iOS, ActionSheet is detached by default i.e. there is a gap between screen bottom and sheet bottom
is this expected? i don't mind all that much because the fix is easy but just wanted to make sure
current workaround:
The text was updated successfully, but these errors were encountered: