我正在尝试使用reactNative中的PANRESPONDER在本机中创建一个选择器。实际上,View的宽度从左到右,视图的高度从上到下。我想动态反转框。 所以我给宽度和高度作为负值。但是视图消失了。我怎么能扭转观点?
答案 0 :(得分:0)
如果有人最终在这里寻找如何使屏幕尺寸为负值,那么你可以在滑块中移动一个元素..
let screenWidth = Dimensions.get('window').width;
let screenWidthNegative = parseInt('-' + screenWidth);
<View style={[styles.thisViewsStyle, {marginLeft: screenWidthNegative}]}></View>