diff --git a/src/components/Post.jsx b/src/components/Post.jsx index 7c44630..c2ebddb 100644 --- a/src/components/Post.jsx +++ b/src/components/Post.jsx @@ -10,7 +10,7 @@ import AutoVideo from './AutoVideo'; const BORDER_RADIUS = 12; -function Post({ post, nav, commentView = false }) { +function Post({ post, nav, commentView = false, repost = false }) { if (!post) { return <>; } @@ -60,7 +60,9 @@ function Post({ post, nav, commentView = false }) { { setWidth(event.nativeEvent.layout.width); - }}> + }} + mode={repost ? 'outlined' : 'elevated'} + style={repost ? { marginBottom: 10 } : {}}> {post?.identity?.conversation_icon ? ( @@ -158,6 +160,10 @@ function Post({ post, nav, commentView = false }) { ))} + {post.quote_post && !repost && ( + + )} + fetchPosts(true)} refreshing={loadingPosts} onEndReachedThreshold={0.5}