如何从 react-native-gesture-handler 禁用 RectButton

how to disable RectButton from react-native-gesture-handler

标题几乎就是问题所在。在 react-native 按钮上,即 touchableOpacity 你有禁用的道具,但它似乎不适用于 RectButton

<RectButton onPress={onPress} disabled={isDisabled}></RectButton>

不起作用

有一个道具 “已启用” 使用它。

<RectButton onPress={onPress} enabled={!isDisabled}></RectButton>