react-native-smart-scroll-view
Version:
Handles keyboard events and auto adjusts content to be visible above keyboard on focus. Further scrolling features available.
22 lines (17 loc) • 402 B
JavaScript
/**
* Sample React Native App
* https://github.com/facebook/react-native
*/
;
var React = require('react-native');
var {
AppRegistry,
Component
} = React;
import Example from './Example.js';
class SuperScrollingFormExample extends Component {
render () {
return <Example/>
}
};
AppRegistry.registerComponent('SuperScrollingFormExample', () => SuperScrollingFormExample);