Skip to content

Commit

Permalink
Merge pull request #2398 from gluestack/fix/android-snapPoints
Browse files Browse the repository at this point in the history
fix: snapPoints height calculation in android
  • Loading branch information
Viraj-10 authored Aug 21, 2024
2 parents d56b859 + 1f46dd3 commit 15610de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/unstyled/actionsheet/src/ActionsheetContent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import { mergeRefs } from '@gluestack-ui/utils';
import { useDialog } from '@react-native-aria/dialog';

import { usePreventScroll } from '@react-native-aria/overlays';
const windowHeight = Dimensions.get('window').height;
const windowHeight = Dimensions.get('screen').height;
function ActionsheetContent(
StyledActionsheetContent: any,
AnimatePresence?: any
Expand Down

0 comments on commit 15610de

Please sign in to comment.