Skip to content

Commit

Permalink
fix: UIT-241 add scrollview to diagonal split view
Browse files Browse the repository at this point in the history
  • Loading branch information
samvanhoeyicapps committed Jan 26, 2024
1 parent 94f0baf commit ac3c835
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/_components/diagonalSplitView/DiagonalSplitView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ const DiagonalSplitView: FC<TProps> = ({
const { width } = useWindowDimensions();

return (
<>
<ScrollView>
<Styled.TopSafeAreaViewContainer backgroundColor={backgroundColor} edges={['top']} isScrollable={false} />
<Styled.ViewContainer backgroundColor={backgroundColor} edges={['bottom']} isScrollable={false}>
<Styled.TopContainer backgroundColor={backgroundColor} style={topContentStyle}>
Expand All @@ -51,7 +51,7 @@ const DiagonalSplitView: FC<TProps> = ({
</Styled.BottomContainer>
</Styled.ViewContainer>
<FocusAwareStatusBar backgroundColor={getColor(backgroundColor)} barStyle="light-content" />
</>
</ScrollView>
);
};

Expand Down

0 comments on commit ac3c835

Please sign in to comment.