Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

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

fixing remaining text colors on android

authored by

João Ferreiro and committed by
Paul Frazee
469b05c4 982f4637

+9 -7
+2 -2
src/view/com/composer/ComposePost.tsx
··· 237 237 <TextLink 238 238 href={`/profile/${replyTo.author.handle}`} 239 239 text={replyTo.author.displayName || replyTo.author.handle} 240 - style={[s.f16, s.bold]} 240 + style={[s.f16, s.bold, s.black]} 241 241 /> 242 - <Text style={[s.f16, s['lh16-1.3']]} numberOfLines={6}> 242 + <Text style={[s.f16, s['lh16-1.3'], s.black]} numberOfLines={6}> 243 243 {replyTo.text} 244 244 </Text> 245 245 </View>
+4 -4
src/view/com/modals/CreateScene.tsx
··· 97 97 return ( 98 98 <View style={styles.outer}> 99 99 <BottomSheetScrollView style={styles.inner}> 100 - <Text style={styles.title}>Create a scene</Text> 100 + <Text style={[styles.title, s.black]}>Create a scene</Text> 101 101 <Text style={styles.description}> 102 102 Scenes are invite-only groups which aggregate what's popular with 103 103 members. 104 104 </Text> 105 105 <View style={{paddingBottom: 50}}> 106 106 <View style={styles.group}> 107 - <Text style={styles.label}>Scene Handle</Text> 107 + <Text style={[styles.label, s.black]}>Scene Handle</Text> 108 108 <BottomSheetTextInput 109 109 style={styles.textInput} 110 110 placeholder="e.g. alices-friends" ··· 114 114 /> 115 115 </View> 116 116 <View style={styles.group}> 117 - <Text style={styles.label}>Scene Display Name</Text> 117 + <Text style={[styles.label, s.black]}>Scene Display Name</Text> 118 118 <BottomSheetTextInput 119 119 style={styles.textInput} 120 120 placeholder="e.g. Alice's Friends" ··· 125 125 /> 126 126 </View> 127 127 <View style={styles.group}> 128 - <Text style={styles.label}>Scene Description</Text> 128 + <Text style={[styles.label, s.black]}>Scene Description</Text> 129 129 <BottomSheetTextInput 130 130 style={[styles.textArea]} 131 131 placeholder="e.g. Artists, dog-lovers, and memelords."
+2 -1
src/view/com/post-thread/PostThreadItem.tsx
··· 124 124 style={styles.metaItem} 125 125 href={authorHref} 126 126 title={authorTitle}> 127 - <Text style={[s.f16, s.bold]} numberOfLines={1}> 127 + <Text style={[s.f16, s.bold, s.black]} numberOfLines={1}> 128 128 {item.author.displayName || item.author.handle} 129 129 </Text> 130 130 </Link> ··· 390 390 fontFamily: 'System', 391 391 fontSize: 16, 392 392 lineHeight: 20.8, // 1.3 of 16px 393 + color: 'black', 393 394 }, 394 395 postTextContainer: { 395 396 flexDirection: 'row',
+1
src/view/screens/Search.tsx
··· 111 111 inputIcon: { 112 112 marginRight: 10, 113 113 color: colors.gray3, 114 + alignSelf: 'center', 114 115 }, 115 116 input: { 116 117 flex: 1,