fix touch area
This commit is contained in:
parent
935864ecc5
commit
9c3dece7d0
|
@ -225,11 +225,9 @@ const MnemonicScreen: FC<MnemonicScreenProps> = props => {
|
|||
numColumns={3}
|
||||
style={[styles.mnemonicList, {marginTop: 10}]}
|
||||
renderItem={({ item, index }) =>
|
||||
<View style={[styles.mnemonicWordContainer, selectedWords[index] ? {backgroundColor: 'white'} : {}, {paddingVertical: 20}]}>
|
||||
<TouchableOpacity onPress={() => verifyWord(index)}>
|
||||
<TouchableOpacity onPress={() => verifyWord(index)} style={[styles.mnemonicWordContainer, selectedWords[index] ? {backgroundColor: 'white'} : {}, {paddingVertical: 20}]}>
|
||||
<Text style={[styles.mnemonicWord, selectedWords[index] ? {color: 'black'} : {}]}> {item}</Text>
|
||||
</TouchableOpacity>
|
||||
</View>
|
||||
}
|
||||
/>
|
||||
<View style={Styles.footer}>
|
||||
|
|
Loading…
Reference in New Issue