Skip to content

Commit

Permalink
Merge pull request #111 from ksmangat/main
Browse files Browse the repository at this point in the history
Move Story content outside animated view
  • Loading branch information
LukasFridmansky authored Aug 30, 2024
2 parents 164cac4 + 4a9358d commit ddc2884
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/List/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ const StoryList: FC<StoryListProps> = ( {
videoDuration={videoDuration}
/>
<Animated.View style={[ contentStyles, ListStyles.content ]}>
<StoryContent stories={stories} active={isActive} activeStory={activeStory} />
{imageOverlayView}
<Progress
active={isActive}
Expand All @@ -70,7 +71,6 @@ const StoryList: FC<StoryListProps> = ( {
progressContainerStyle={progressContainerStyle}
/>
<StoryHeader {...props} />
<StoryContent stories={stories} active={isActive} activeStory={activeStory} />
</Animated.View>
</Animated.View>
<StoryFooter stories={stories} active={isActive} activeStory={activeStory} />
Expand Down

0 comments on commit ddc2884

Please sign in to comment.