react-native-parallax-scroll-view
react-native-parallax-scroll-view copied to clipboard
About The number of rows
I tested your ListView exmple. and I added data more than 40.
like this... but only 21 rows showed up.
Could you give me some comments.
class Talks extends Component { constructor(props) { super(props); this.state = { dataSource: new ListView.DataSource({ rowHasChanged: (r1, r2) => r1 !== r2 }).cloneWithRows([ 'Simplicity Matters1', 'Hammock Driven Development2', 'Value of Values3', 'Are We There Yet?4', 'The Language of the System5', 'Design, Composition, and Performance6', 'Clojure core.async7', 'The Functional Database8', 'Deconstructing the Database9', 'Hammock Driven Development10',
'Simplicity Matters11',
'Hammock Driven Development12',
'Value of Values13',
'Are We There Yet?14',
'The Language of the System15',
'Design, Composition, and Performance16',
'Clojure core.async17',
'The Functional Database18',
'Deconstructing the Database19',
'Hammock Driven Development20',
'Simplicity Matters21',
'Hammock Driven Development22',
'Value of Values23',
'Are We There Yet?24',
'The Language of the System25',
'Design, Composition, and Performance26',
'Clojure core.async27',
'The Functional Database28',
'Deconstructing the Database29',
'Hammock Driven Development30',
'Simplicity Matters31',
'Hammock Driven Development32',
'Value of Values33',
'Are We There Yet?34',
'The Language of the System35',
'Design, Composition, and Performance36',
'Clojure core.async37',
'The Functional Database38',
'Deconstructing the Database39',
'Hammock Driven Development40',
'Simplicity Matters41',
'Hammock Driven Development42',
'Value of Values43',
'Are We There Yet?44',
'The Language of the System45',
'Design, Composition, and Performance46',
'Clojure core.async47',
'The Functional Database48',
'Deconstructing the Database49',
'Hammock Driven Development50',
])
};
}
I solved this problem with giving props initialListSize={100}
Is Dynamic rows working fine?
@maestrolsj #60 should fix your issue
I met same problem