Skip to content

How to scroll multiple elements into view instead of just the focused input? #579

Open
@theianjohnson

Description

@theianjohnson

I've read through the readme and the issues that seem relevant, but three years later and not using class components how do we do this without needing this? I'm programmatically focusing on a textInput nameInputRef?.current?.focus(); so I don't have the event param for a target.

Trying to cobble the readme together with this #451, but so far no luck

_scrollToInput (reactNode: any) {
  // Add a 'scroll' ref to your ScrollView
  this.scroll.props.scrollToFocusedInput(reactNode)
}

<KeyboardAwareScrollView
  innerRef={ref => {
    this.scroll = ref
  }}>
  <View>
    <TextInput
      onFocus={(event: Event) => {
        // `bind` the function if you're using ES6 classes
        this._scrollToInput(ReactNative.findNodeHandle(event.target))
      }}
    />
  </View>
</KeyboardAwareScrollView>

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions