Skip to content

Commit

Permalink
fix wrong inverted list order ios
Browse files Browse the repository at this point in the history
  • Loading branch information
getusha committed Aug 25, 2023
1 parent d7a3667 commit 96151dc
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/components/InvertedFlatList/index.ios.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
import React, {forwardRef} from 'react';
import BaseInvertedFlatList from './BaseInvertedFlatList';
import CellRendererComponent from './CellRendererComponent';
import styles from "../../styles/styles";

export default forwardRef((props, ref) => (
<BaseInvertedFlatList
// eslint-disable-next-line react/jsx-props-no-spreading
{...props}
ref={ref}
inverted
contentContainerStyle={styles.justifyContentEnd}
CellRendererComponent={CellRendererComponent}
/>
));

0 comments on commit 96151dc

Please sign in to comment.