fix(ScrollView): fix issue with scroll view not scrolling (#872)

Fixes #871
This commit is contained in:
Eric Rozell 2016-11-09 23:24:32 -08:00
Родитель 1c26695c51
Коммит 41cf81a5d6
1 изменённых файлов: 2 добавлений и 4 удалений

Просмотреть файл

@ -558,14 +558,12 @@ const ScrollView = React.createClass({
const styles = StyleSheet.create({
baseVertical: {
flexGrow: 1,
flexShrink: 1,
flex: 1,
flexDirection: 'column',
overflow: 'scroll',
},
baseHorizontal: {
flexGrow: 1,
flexShrink: 1,
flex: 1,
flexDirection: 'row',
overflow: 'scroll',
},