React-native-elements: onBackdropPress not work in Overlay

Created on 17 Jul 2018  路  1Comment  路  Source: react-native-elements/react-native-elements

onBackdropPress not work for me.

        <Overlay
          isVisible={this.state.isVisible}
          onBackdropPress={() => this.setState({isVisible: false})}
        >
          <Text>Hello from Overlay!</Text>
        </Overlay>

  "dependencies": {
    "prop-types": "^15.6.1",
    "react": "16.3.1",
    "react-native": "0.55.4",
    "react-native-elements": "^1.0.0-beta5",
    "react-native-vector-icons": "^4.6.0",
    "react-navigation": "^2.0.1"
  },
Bug

Most helpful comment

##I Found problem!!!
this:

it not work.

<View style={styles.container}>
    <Overlay 
            onBackdropPress={() => this.setState({isVisible: false})}
             ...
    />

     <SomeViews .../>
     <SomeViews .../>
     ...
</View>

but it work fine:

<View style={styles.container}>

     <SomeViews .../>
     <SomeViews .../>
     ...

     <Overlay 
          onBackdropPress={() => this.setState({isVisible: false})}
             ...
     />

</View>

Overlay must in end of view ?! i think it's a bug!

if Overlay in above of views....
see problem:
bandicam-2018-07-18-18-51-37-498

@iRoachie @KevM @cpunion @caphun @cranberyxl @xdamman

>All comments

##I Found problem!!!
this:

it not work.

<View style={styles.container}>
    <Overlay 
            onBackdropPress={() => this.setState({isVisible: false})}
             ...
    />

     <SomeViews .../>
     <SomeViews .../>
     ...
</View>

but it work fine:

<View style={styles.container}>

     <SomeViews .../>
     <SomeViews .../>
     ...

     <Overlay 
          onBackdropPress={() => this.setState({isVisible: false})}
             ...
     />

</View>

Overlay must in end of view ?! i think it's a bug!

if Overlay in above of views....
see problem:
bandicam-2018-07-18-18-51-37-498

@iRoachie @KevM @cpunion @caphun @cranberyxl @xdamman

Was this page helpful?
0 / 5 - 0 ratings

Related issues

jackcbrown89 picture jackcbrown89  路  3Comments

kk412027247 picture kk412027247  路  3Comments

ilkerceng picture ilkerceng  路  3Comments

iRoachie picture iRoachie  路  3Comments

lukewlms picture lukewlms  路  3Comments