|
|
@@ -78,7 +78,7 @@ const getRadius = (style, fixedAlign) => {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-const TextView = ({style, ellipsizeMode, numberOfLines, allowFontScaling=false, onPress, onLongPress, fixedAlign=true, children}) => {
|
|
|
+const TextView = ({style, ellipsizeMode, numberOfLines, allowFontScaling=false, onPress, onLongPress, fixedAlign=true, selectable, children}) => {
|
|
|
const styles = getRadius(style, fixedAlign);
|
|
|
return (
|
|
|
<View style={styles.view}>
|
|
|
@@ -87,6 +87,7 @@ const TextView = ({style, ellipsizeMode, numberOfLines, allowFontScaling=false,
|
|
|
allowFontScaling={allowFontScaling}
|
|
|
ellipsizeMode={ellipsizeMode}
|
|
|
numberOfLines={numberOfLines}
|
|
|
+ selectable={selectable}
|
|
|
onPress={onPress}
|
|
|
onLongPress={onLongPress}>{children}</Text>
|
|
|
</View>
|