Quantcast
Channel: Active questions tagged touchablewithoutfeedback - Stack Overflow
Viewing all articles
Browse latest Browse all 46

react native gifted chat stop scrolling with TouchableWithoutFeedBack

$
0
0

when i wrap GiftedChat withTouchableWithoutFeedBackGiftedChat scroll not working

the scroll just work when i remove the view that wrap imageBackground but in this case the touchableWithoutFeedBack stop workingso any idea how to fix this

<TouchableWithoutFeedback            onPress={() => {              Keyboard.dismiss();              this.setState({show_BottomDropDown: false, show_dropDown: false});            }}><View              style={{                flex: 1,                width: '100%',                height: '100%',                backgroundColor: 'white',              }}><ImageBackground                source={require('../../assists/images/chatBackground.png')}                style={{                  height: '100%',                  width: '100%',                  resizeMode: 'cover',                  flex:1                }}                imageStyle={styles.chatBackroundImage}><GiftedChat                  minInputToolbarHeight={1}                  messages={this.state.Data}                  user={{                    _id: 1,                  }}                  renderInputToolbar={(props) =>                    this.customtInputToolbarEmpty(props)                  }                  renderBubble={this.renderBubble}                  renderTime={(props) => (<View style={props.containerStyle}><Text                        style={{                          marginHorizontal: 10,                          marginBottom: 5,                          color: props.position === 'left' ? 'black' : 'white',                          fontSize: 10,                        }}>                        {moment(props.currentMessage.createdAt).format('LT')}</Text></View>                  )}                />                {this.customtInputToolbar()}</ImageBackground></View></TouchableWithoutFeedback>

Viewing all articles
Browse latest Browse all 46

Trending Articles