Authored by 陈林

Merge branch '9.17' into 'master'

9.17



See merge request !17
... ... @@ -226,7 +226,8 @@ let styles = StyleSheet.create({
backgroundColor: '#e0e0e0'
},
contentContainer: {
flexDirection: 'column',
flexDirection: 'row',
flexWrap: 'wrap',
backgroundColor: 'white'
},
listContainer: {
... ...
... ... @@ -236,6 +236,7 @@ class SwipeRow extends React.PureComponent {
<Animated.View
{...this._panResponder.panHandlers}
style={{
backgroundColor: 'transparent',
transform: [
{translateX: this._translateX}
]
... ... @@ -250,6 +251,7 @@ class SwipeRow extends React.PureComponent {
{...this._panResponder.panHandlers}
onLayout={ (e) => this.onContentLayout(e) }
style={{
backgroundColor: 'transparent',
transform: [
{translateX: this._translateX}
]
... ...