Disable actionSheet which is used as a picker for IOS

368 Views Asked by At

I am using react-native-actionsheet. How can I disable the ActionSheet which is used as a Picker (make it not clickable)?

I tried: editable={false}. Are there bettter approaches?

                <View style={styles.Column}>
                  <Text style={styles.TextLabel} onPress={this.showActionSheet}>Structure Type:</Text>
                    <ActionSheet
                  ref={o => this.ActionSheet = o}
                  title={'Structure Type'}
                  options={['first', 'second', 'third', 'Cancel']}
                  cancelButtonIndex={3}
                  selectedValue={this.state.structureType}
                  value={this.state.structureType}
                  onPress={this.handleSTypePress}
                  editable={false}
                />
                </View>
1

There are 1 best solutions below

0
On

Solved it by adding pointerEvents="none" to the column view