Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

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

Fix suggested follows scrolling (#8036)

authored by

Eric Bailey and committed by
GitHub
4db3ccbe 3d7fce56

+28 -26
+28 -26
src/components/FeedInterstitials.tsx
··· 360 360 </View> 361 361 ) : ( 362 362 <BlockDrawerGesture> 363 - <ScrollView 364 - horizontal 365 - showsHorizontalScrollIndicator={false} 366 - snapToInterval={MOBILE_CARD_WIDTH + a.gap_md.gap} 367 - decelerationRate="fast"> 368 - <View style={[a.px_lg, a.pt_sm, a.pb_lg, a.flex_row, a.gap_md]}> 369 - {content} 363 + <View> 364 + <ScrollView 365 + horizontal 366 + showsHorizontalScrollIndicator={false} 367 + snapToInterval={MOBILE_CARD_WIDTH + a.gap_md.gap} 368 + decelerationRate="fast"> 369 + <View style={[a.px_lg, a.pt_sm, a.pb_lg, a.flex_row, a.gap_md]}> 370 + {content} 370 371 371 - <Button 372 - label={_(msg`Browse more accounts on the Explore page`)} 373 - onPress={() => { 374 - navigation.navigate('SearchTab') 375 - }}> 376 - <CardOuter style={[a.flex_1, {borderWidth: 0}]}> 377 - <View style={[a.flex_1, a.justify_center]}> 378 - <View style={[a.flex_row, a.px_lg]}> 379 - <Text style={[a.pr_xl, a.flex_1, a.leading_snug]}> 380 - <Trans> 381 - Browse more suggestions on the Explore page 382 - </Trans> 383 - </Text> 372 + <Button 373 + label={_(msg`Browse more accounts on the Explore page`)} 374 + onPress={() => { 375 + navigation.navigate('SearchTab') 376 + }}> 377 + <CardOuter style={[a.flex_1, {borderWidth: 0}]}> 378 + <View style={[a.flex_1, a.justify_center]}> 379 + <View style={[a.flex_row, a.px_lg]}> 380 + <Text style={[a.pr_xl, a.flex_1, a.leading_snug]}> 381 + <Trans> 382 + Browse more suggestions on the Explore page 383 + </Trans> 384 + </Text> 384 385 385 - <Arrow size="xl" /> 386 + <Arrow size="xl" /> 387 + </View> 386 388 </View> 387 - </View> 388 - </CardOuter> 389 - </Button> 390 - </View> 391 - </ScrollView> 389 + </CardOuter> 390 + </Button> 391 + </View> 392 + </ScrollView> 393 + </View> 392 394 </BlockDrawerGesture> 393 395 )} 394 396 </View>