Yuan Guozheng

Results 2 issues of Yuan Guozheng

![screenshot_20180426-104831](https://user-images.githubusercontent.com/6261504/39283491-1ce818a0-4941-11e8-82cd-39349f647a59.png) 机型:Pixel,系统:8.1 使用LayoutInspector会发现SwipeBackLayout中的子View的Left和Width计算不正确,导致布局被隐藏在navigationbar底下

当前版本的代码中,貌似把以前的代码替掉了 针对Android的render中,缺少onPageSelected: this.onScrollEnd,导致Android上Indicator没有效果 onScollEnd函数中,缺少以下代码 if (!e.nativeEvent.contentOffset) { if (this.state.dir == 'x') { e.nativeEvent.contentOffset = { x: e.nativeEvent.position \* this.state.width }; } else { e.nativeEvent.contentOffset = { y: e.nativeEvent.position \* this.state.height...