We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d4d8f75 commit ec69f36Copy full SHA for ec69f36
package/src/components/AttachmentPicker/AttachmentPicker.tsx
@@ -278,12 +278,11 @@ export const AttachmentPicker = React.forwardRef(
278
>
279
{iOSLimited && <AttachmentPickerIOSSelectMorePhotos />}
280
<BottomSheetFlatList
281
- contentContainerStyle={[
+ contentContainerStyle={StyleSheet.flatten([
282
styles.container,
283
- { backgroundColor: white },
+ { backgroundColor: white, opacity: photoError ? 0 : 1 },
284
bottomSheetContentContainer,
285
- { opacity: photoError ? 0 : 1 },
286
- ]}
+ ])}
287
data={selectedPhotos}
288
keyExtractor={(item) => item.asset.uri}
289
numColumns={numberOfAttachmentPickerImageColumns ?? 3}
0 commit comments