fixed rtl in community selection modal

This commit is contained in:
Sadaqat Ali 2022-04-06 22:35:37 +05:00
parent 73f64b9614
commit 33278f8ef3
2 changed files with 3 additions and 0 deletions

View File

@ -13,5 +13,6 @@ export default EStyleSheet.create({
marginLeft: 16,
marginBottom: 8,
color: '$primaryBlack',
textAlign: 'left',
},
});

View File

@ -1,4 +1,5 @@
import EStyleSheet from 'react-native-extended-stylesheet';
import { isRTL } from '../../../utils/I18nUtils';
export default EStyleSheet.create({
container: {
@ -40,6 +41,7 @@ export default EStyleSheet.create({
fontSize: 24,
color: '$iconColor',
justifyContent: 'center',
transform: [{ rotate: isRTL() ? '-180deg' : '0deg' }],
},
backButtonContainer: {
flex: 1,