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.
2 parents 7d93dd3 + 37aa989 commit 64b428eCopy full SHA for 64b428e
src/components/MessageList/MessageList.tsx
@@ -92,6 +92,7 @@ const styles = StyleSheet.create({
92
paddingBottom: 4,
93
},
94
flex: { flex: 1 },
95
+ invert: { transform: [{ scaleY: -1 }] },
96
listContainer: {
97
flex: 1,
98
width: '100%',
@@ -852,7 +853,7 @@ const MessageListWithContext = <
852
853
}
854
};
855
const renderListEmptyComponent = () => (
- <View style={styles.flex} testID='empty-state'>
856
+ <View style={[styles.flex, styles.invert]} testID='empty-state'>
857
<EmptyStateIndicator listType='message' />
858
</View>
859
);
0 commit comments