在本机iOS反应中面对Z-Index的问题

时间:2016-12-01 14:30:24

标签: ios react-native

我有一个用native native编写的代码,其中我想用图像替换Facebook按钮,我正在使用Z-Index。我能够在FbButton上重叠图像。但是Fbbutton的点击事件不起作用。以下是源代码。

  <Image  
              source={require('./images/connect-with-fb.png')} 
              style={[css.innerImage, {zIndex:1000, marginBottom: -50}]} />

              <LoginButton        
                publishPermissions={["publish_actions"]}
                onLoginFinished={
                  (error, result) => {
                    if (error) {
                      console.log("login has error: " + result.error);
                    } else if (result.isCancelled) {
                      console.log("login is cancelled.");
                    } else {
                      AccessToken.getCurrentAccessToken().then(
                        (data) => {
                          fbAccessToken = data.accessToken.toString();
                          GLOBAL.FACEBOOK_TOKEN = fbAccessToken
                          this.goToHomePage();
                        }
                      )
                    }
                  }
                }                  
              />

请原谅简洁。任何帮助,将不胜感激。提前致谢

0 个答案:

没有答案