Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge branch 'main' of github.com:bluesky-social/social-app into main

+28 -17
+28 -17
src/view/com/util/LoadingPlaceholder.tsx
··· 67 67 <LoadingPlaceholder width="95%" height={6} style={{marginBottom: 8}} /> 68 68 <LoadingPlaceholder width="80%" height={6} style={{marginBottom: 11}} /> 69 69 <View style={styles.postCtrls}> 70 - <View style={[styles.postCtrl, {paddingLeft: 0}]}> 71 - <CommentBottomArrow 72 - style={[{color: theme.palette.default.icon, marginTop: 1}]} 73 - strokeWidth={3} 74 - size={15} 75 - /> 70 + <View style={styles.postCtrl}> 71 + <View style={[styles.postBtn, {paddingLeft: 0}]}> 72 + <CommentBottomArrow 73 + style={[{color: theme.palette.default.icon, marginTop: 1}]} 74 + strokeWidth={3} 75 + size={15} 76 + /> 77 + </View> 76 78 </View> 77 79 <View style={styles.postCtrl}> 78 - <RepostIcon 79 - style={{color: theme.palette.default.icon}} 80 - strokeWidth={3} 81 - size={20} 82 - /> 80 + <View style={styles.postBtn}> 81 + <RepostIcon 82 + style={{color: theme.palette.default.icon}} 83 + strokeWidth={3} 84 + size={20} 85 + /> 86 + </View> 83 87 </View> 84 88 <View style={styles.postCtrl}> 85 - <HeartIcon 86 - style={{color: theme.palette.default.icon} as ViewStyle} 87 - size={16} 88 - strokeWidth={3} 89 - /> 89 + <View style={styles.postBtn}> 90 + <HeartIcon 91 + style={{color: theme.palette.default.icon} as ViewStyle} 92 + size={16} 93 + strokeWidth={3} 94 + /> 95 + </View> 90 96 </View> 91 - <View style={styles.postCtrl} /> 97 + <View style={styles.postCtrl}> 98 + <View style={styles.postBtn} /> 99 + </View> 92 100 </View> 93 101 </View> 94 102 </View> ··· 279 287 justifyContent: 'space-between', 280 288 }, 281 289 postCtrl: { 290 + flex: 1, 291 + }, 292 + postBtn: { 282 293 padding: 5, 283 294 flex: 1, 284 295 flexDirection: 'row',