This commit is contained in:
Marcos Rodriguez Velez 2024-06-14 17:07:01 -04:00
parent 4ab2d36612
commit 9335bd0960
No known key found for this signature in database
GPG Key ID: 6030B2F48CCE86D7
2 changed files with 7 additions and 5 deletions

View File

@ -84,11 +84,13 @@ const OutputList = ({
return (
<RNElementsListItem bottomDivider onPress={onPress} containerStyle={selected ? oStyles.containerSelected : oStyles.container}>
<Avatar
rounded
overlayContainerStyle={oStyles.avatar}
<RNElementsListItem.CheckBox
checkedColor="#0070FF"
iconType="material-community"
checkedIcon="checkbox-marked"
uncheckedIcon="checkbox-blank-outline"
checked={selected}
onPress={selected ? onDeSelect : onSelect}
icon={selected ? { name: 'check' } : undefined}
/>
<RNElementsListItem.Content>
<RNElementsListItem.Title style={oStyles.amount}>{amount}</RNElementsListItem.Title>

View File

@ -115,7 +115,7 @@ const ReorderWallets: React.FC = () => {
walletType: wallet.type,
});
},
[navigate],
[goBack, navigate],
);
const isDraggingDisabled = state.searchQuery.length > 0 || state.isSearchFocused;