Skip to content

Commit

Permalink
fix: 0-button text style not working
Browse files Browse the repository at this point in the history
  • Loading branch information
ajayesivan authored Mar 25, 2023
1 parent d7abe00 commit 74a80fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/PinCode.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ const PinCode = ({
</View>
<View style={defaultStyles.pinNumberRow}>
<View style={[defaultStyles.button, { width: 60, height: 60 }]}></View>
<PinButton value={'0'} disabled={buttonsDisabled} style={buttonStyle} onPress={onPinButtonPressed} />
<PinButton value={'0'} disabled={buttonsDisabled} style={buttonStyle} textStyle={styles?.enter?.buttonText} onPress={onPinButtonPressed} />
<PinButton value={'delete'} disabled={buttonsDisabled}
backSpace={options?.backSpace} backSpaceText={curTextOptions?.enter?.backSpace}
style={defaultStyles.button} textStyle={styles?.enter?.buttonText} onPress={onPinButtonPressed} />
Expand Down

0 comments on commit 74a80fc

Please sign in to comment.