如何在 React Naitve 中为视图的高度或宽度提供负值



我正在尝试使用 reactNative 中的 PANRESPONDER 在 react native 中创建一个选择器。实际上,视图的宽度是从左到右定向的,视图的高度是从上到下定向的。我想动态反转盒子。所以我将宽度和高度作为负值。但视图消失了。如何反转视图?

如果有人最终在这里寻找如何使屏幕尺寸的值为负,以便您可以在滑块中移动元素。

let screenWidth = Dimensions.get('window').width;
let screenWidthNegative = parseInt('-' + screenWidth);
<View style={[styles.thisViewsStyle, {marginLeft: screenWidthNegative}]}></View>

相关内容

  • 没有找到相关文章

最新更新