import { StyleSheet } from 'react-native'; import colors from '../../values/colors' const styles = StyleSheet.create({ container: { flex: 1, }, item: { flexDirection: 'row', padding: 10, paddingLeft: 12, paddingRight: 12, marginVertical: 8, marginHorizontal: 10, flex: 1, borderRadius: 10 }, hiddenItem: { flexDirection: 'row', padding: 10, marginVertical: 8, flex: 1, justifyContent: 'flex-end', alignItems: 'center', }, title: { fontSize: 12, }, imgAvatar: { width: 50, height: 50, resizeMode: 'contain', alignSelf: 'center', borderRadius: 30 }, headerView: { padding: 10, flexDirection: 'row', justifyContent: 'space-between', alignItems: 'center', backgroundColor: colors.white }, titleHeader: { color: 'black', fontSize: 15, fontWeight: 'bold', marginLeft: 20, marginTop: 10 }, viewIconHeader: { padding: 8, borderRadius: 20, justifyContent: 'center', alignItems: 'center', }, iconStatus: { position: 'absolute', // top: 0, right: 0, width: 10, height: 10 }, viewBadge: { position: 'absolute', top: -5, right: -8, borderRadius: 10, justifyContent: 'center', alignItems: 'center', backgroundColor: 'red', width: 20, height: 18 } }); export default styles