react-native-keyboard-aware-scroll-view icon indicating copy to clipboard operation
react-native-keyboard-aware-scroll-view copied to clipboard

Scrolling to previous focused textinput when clicking on outside of input box - IOS

Open Joshig99 opened this issue 3 years ago • 0 comments

https://user-images.githubusercontent.com/46310246/164512756-35da534d-02fd-460d-ae4e-291be6b6dcc4.mov

it is scrolling to previous focused textinput when clicking on outside of the input box this my code

         <Card.Content style={{ paddingHorizontal: 0 }}  >
          <KeyboardAwareScrollView
            extraScrollHeight={150}
            ref={(r)=>setScrollRef(r)}
            keyboardOpeningTime={0}
            bounces={false}
            bouncesZoom={false}
            enableResetScrollToCoords={false}
            alwaysBounceVertical={false}
            keyboardShouldPersistTaps={'handled'}
          >
            <Card.Content style={{ paddingHorizontal: 0,}}>
              .......

"react-native-keyboard-aware-scroll-view": "^0.9.4", "react-native": "0.64.2",

Joshig99 avatar Apr 21 '22 17:04 Joshig99