Bluesky app fork with some witchin' additions 💫 witchsky.app
bluesky fork client

Add accessibilityRole to single images (#9148)

authored by samuel.fm and committed by

GitHub 0dd71fb0 54b8eacb

+2
+2
src/view/com/util/images/AutoSizedImage.tsx
··· 204 204 // alt here is what screen readers actually use 205 205 accessibilityLabel={image.alt} 206 206 accessibilityHint={_(msg`Views full image`)} 207 + accessibilityRole="button" 207 208 style={[ 208 209 a.w_full, 209 210 a.rounded_md, ··· 226 227 // alt here is what screen readers actually use 227 228 accessibilityLabel={image.alt} 228 229 accessibilityHint={_(msg`Views full image`)} 230 + accessibilityRole="button" 229 231 style={[a.h_full]}> 230 232 {contents} 231 233 </Pressable>