Bolket / react-native-scrollview-smart

A Smart ScrollView component for IOS and Android

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

React Native Scrollview Smart CircleCI react-native-scrollview-smart npm version Known Vulnerabilities

A smart iOS and Android scrollview for React Native

INSTALLATION

npm i react-native-scrollview-smart --save

Android

in your `AndroidManifest.xml add:

<activity
  android:windowSoftInputMode="adjustPan" ... >

Demo

Usage

See the Example app

class Example extends Component {

  constructor(props) {
    super(props);
    this.scrollOnFocus = this.scrollOnFocus.bind(this);
  }

  scrollOnFocus = inputName => () => {
    this.scroll.inputFocused(
      findNodeHandle(this[inputName]),
    );
  }

  render() {
    return (
      <ScrollViewSmart
        ref={e => (this.scroll = e)}
      >
        <TextInput
          ref={e => (this.input = e)}
          onFocus={this.scrollOnFocus('input')}
        />
        // ...
      </ScrollViewSmart>
    );
  }
}

Donate

  • Etherium (ETH): 0x57b5ab33a339fc7fab86127981e4095b84d5ddfa

About

A Smart ScrollView component for IOS and Android

License:MIT License


Languages

Language:JavaScript 48.4%Language:Objective-C 30.6%Language:Python 11.9%Language:Java 9.1%