4

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

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

不工作

4

1 回答 1

4

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

<RectButton onPress={onPress} enabled={!isDisabled}></RectButton>
于 2021-02-23T19:36:02.903 回答