changing icon indicating not-connected card

This commit is contained in:
balzack 2023-10-08 08:25:54 -07:00
parent f1ec3f30e0
commit 50c1e07431
2 changed files with 5 additions and 5 deletions

View File

@ -55,16 +55,16 @@ export function CardItem({ item, openContact, enableIce, call, message }) {
{ item.status !== 'connected' && (
<TouchableOpacity style={styles.more} onPress={select}>
{ item.status === 'requested' && (
<MatIcons name={'dots-horizontal'} size={32} color={Colors.requested} />
<MatIcons name={'circle-medium'} size={24} color={Colors.requested} />
)}
{ item.status === 'connecting' && (
<MatIcons name={'dots-horizontal'} size={32} color={Colors.connecting} />
<MatIcons name={'circle-medium'} size={24} color={Colors.connecting} />
)}
{ item.status === 'pending' && (
<MatIcons name={'dots-horizontal'} size={32} color={Colors.pending} />
<MatIcons name={'circle-medium'} size={24} color={Colors.pending} />
)}
{ item.status === 'confirmed' && (
<MatIcons name={'dots-horizontal'} size={32} color={Colors.confirmed} />
<MatIcons name={'circle-medium'} size={24} color={Colors.confirmed} />
)}
</TouchableOpacity>
)}

2
todo
View File

@ -8,4 +8,4 @@ channel detail notifications
block restore activity
use apn for ios
stylize splash screen
use dot indicator for non-connected contact