react-native-windows
react-native-windows copied to clipboard
Inverted order FlatList with horizontal layout displaying incorrectly on Fabric app
On the FlatList example page in the Fabric app, the 'inverted order FlatList with horizontal layout' does not render as expected, compared to the current example on Paper, as shown below:
Fabric:
Paper:
Sample component code for the example above - initial assumption that there's an issue with the inverted prop?:
<FlatList
data={Data}
renderItem={renderItem}
keyExtractor={(item) => item.id}
horizontal={true}
inverted={true}
/>
On UWP RNW we implemented this with a negative scale transform. Which... had quirks, but mostly got the job done. But we probably just need that same sort of fix for Fabric but haven't implemented it yet.