Skip to content

Commit

Permalink
Mobile: Fix BottomSheet TextInput Cell alignment issue for RTL layout. (
Browse files Browse the repository at this point in the history
#13815)

* Fix BottomSheet TextInput Cell alignment issue in RTL layout.

* Fix lint issues
  • Loading branch information
etoledom authored and youknowriad committed Mar 6, 2019
1 parent 9829ee6 commit 887d198
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* External dependencies
*/
import { TouchableOpacity, Text, View, TextInput } from 'react-native';
import { TouchableOpacity, Text, View, TextInput, I18nManager } from 'react-native';

/**
* WordPress dependencies
Expand Down Expand Up @@ -44,11 +44,14 @@ export default function Cell( props ) {
};

const getValueComponent = () => {
const styleRTL = I18nManager.isRTL && styles.cellValueRTL;
const style = { ...styles.cellValue, ...valueStyle, ...styleRTL };

return isValueEditable ? (
<TextInput
ref={ ( c ) => valueTextInput = c }
numberOfLines={ 1 }
style={ { ...styles.cellValue, ...valueStyle } }
style={ style }
value={ value }
placeholder={ valuePlaceholder }
placeholderTextColor={ '#87a6bc' }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -98,3 +98,7 @@
text-align: right;
flex: 1;
}

.cellValueRTL {
text-align: left;
}

0 comments on commit 887d198

Please sign in to comment.