File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -168,6 +168,7 @@ function FastImageBase({
168
168
// eslint-disable-next-line no-shadow
169
169
resizeMode = 'cover' ,
170
170
forwardedRef,
171
+ accessible = false ,
171
172
...props
172
173
} : FastImageProps & { forwardedRef : React . Ref < any > } ) {
173
174
if ( fallback ) {
@@ -176,7 +177,7 @@ function FastImageBase({
176
177
const resolvedSource = Image . resolveAssetSource ( cleanedSource )
177
178
178
179
return (
179
- < View style = { [ styles . imageContainer , style ] } ref = { forwardedRef } >
180
+ < View style = { [ styles . imageContainer , style ] } ref = { forwardedRef } accessible >
180
181
< Image
181
182
{ ...props }
182
183
style = { [ StyleSheet . absoluteFill , { tintColor } ] }
@@ -198,7 +199,7 @@ function FastImageBase({
198
199
const resolvedDefaultSource = resolveDefaultSource ( defaultSource )
199
200
200
201
return (
201
- < View style = { [ styles . imageContainer , style ] } ref = { forwardedRef } >
202
+ < View style = { [ styles . imageContainer , style ] } ref = { forwardedRef } accessible >
202
203
< FastImageView
203
204
{ ...props }
204
205
tintColor = { tintColor }
You can’t perform that action at this time.
0 commit comments