mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2024-11-19 01:40:12 +01:00
FIX: Check was not visible
This commit is contained in:
parent
a5de1a858a
commit
c75ec0ac25
@ -153,7 +153,15 @@ const ListItem: React.FC<ListItemProps> = React.memo(
|
||||
{chevron && <RNElementsListItem.Chevron iconStyle={{ transform: [{ scaleX: I18nManager.isRTL ? -1 : 1 }] }} />}
|
||||
{rightIcon && <Avatar icon={rightIcon} />}
|
||||
{switchProps && <Switch {...memoizedSwitchProps} accessibilityLabel={title} accessible accessibilityRole="switch" />}
|
||||
{checkmark && <RNElementsListItem.CheckBox iconType="octaicon" checkedColor="#0070FF" checkedIcon="check" checked />}
|
||||
{checkmark && (
|
||||
<RNElementsListItem.CheckBox
|
||||
iconRight
|
||||
containerStyle={stylesHook.containerStyle}
|
||||
iconType="octaicon"
|
||||
checkedIcon="check"
|
||||
checked
|
||||
/>
|
||||
)}
|
||||
</>
|
||||
)}
|
||||
</>
|
||||
|
@ -86,9 +86,9 @@ const OutputList = ({
|
||||
<RNElementsListItem bottomDivider onPress={onPress} containerStyle={selected ? oStyles.containerSelected : oStyles.container}>
|
||||
<RNElementsListItem.CheckBox
|
||||
checkedColor="#0070FF"
|
||||
iconType="material-community"
|
||||
checkedIcon="checkbox-marked"
|
||||
uncheckedIcon="checkbox-blank-outline"
|
||||
iconType="octaicon"
|
||||
checkedIcon="check"
|
||||
uncheckedColor="white"
|
||||
checked={selected}
|
||||
onPress={selected ? onDeSelect : onSelect}
|
||||
/>
|
||||
|
Loading…
Reference in New Issue
Block a user