import React from 'react'; import { View, StyleSheet, Text, LayoutAnimation } from 'react-native'; import I18n from '../../i18n'; const styles = StyleSheet.create({ firstUnread: { flex: 1, flexDirection: 'row', alignItems: 'center', marginVertical: -7 }, firstUnreadLine: { borderTopColor: 'red', borderTopWidth: StyleSheet.hairlineWidth, flex: 1 }, firstUnreadBadge: { color: 'red', backgroundColor: '#fff', fontSize: 11, paddingHorizontal: 10, transform: [{ scaleY: -1 }] } }); export default class UnreadSeparator extends React.PureComponent { componentWillUnmount() { LayoutAnimation.linear(); } render() { return ( {I18n.t('unread_messages')} ); } }