diff --git a/app/components/inverted_flat_list/index.js b/app/components/inverted_flat_list/index.js index f07f8fc7d..e487abe21 100644 --- a/app/components/inverted_flat_list/index.js +++ b/app/components/inverted_flat_list/index.js @@ -133,7 +133,10 @@ const styles = StyleSheet.create({ }, vertical: Platform.select({ android: { - scaleY: -1 + transform: [ + {perspective: 1}, + {scaleY: -1} + ] }, ios: { transform: [{scaleY: -1}] @@ -141,7 +144,10 @@ const styles = StyleSheet.create({ }), horizontal: Platform.select({ android: { - scaleX: -1 + transform: [ + {perspective: 1}, + {scaleY: -1} + ] }, ios: { transform: [{scaleX: -1}]