diff --git a/BlueComponents.js b/BlueComponents.js index c31d2d333..f2873db37 100644 --- a/BlueComponents.js +++ b/BlueComponents.js @@ -413,6 +413,7 @@ export const BlueListItem = React.memo(props => { color: props.disabled ? colors.buttonDisabledTextColor : colors.foregroundColor, fontSize: 16, fontWeight: '500', + writingDirection: I18nManager.isRTL ? 'rtl' : 'ltr', }} numberOfLines={0} accessible={props.switch === undefined} @@ -423,7 +424,13 @@ export const BlueListItem = React.memo(props => { {props.subtitle} diff --git a/screen/lnd/scanLndInvoice.js b/screen/lnd/scanLndInvoice.js index 8162f11a7..b07dd7c19 100644 --- a/screen/lnd/scanLndInvoice.js +++ b/screen/lnd/scanLndInvoice.js @@ -425,6 +425,7 @@ const styles = StyleSheet.create({ fontSize: 14, }, expiresIn: { + writingDirection: I18nManager.isRTL ? 'rtl' : 'ltr', color: '#81868e', fontSize: 12, left: 20,