react-native-parallax-scroll-view icon indicating copy to clipboard operation
react-native-parallax-scroll-view copied to clipboard

About The number of rows

Open maestrolsj opened this issue 8 years ago • 4 comments

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',
        ])
    };
}

maestrolsj avatar Sep 10 '16 11:09 maestrolsj

I solved this problem with giving props initialListSize={100}

maestrolsj avatar Sep 10 '16 11:09 maestrolsj

Is Dynamic rows working fine?

waleedarshad-vf avatar Sep 22 '16 09:09 waleedarshad-vf

@maestrolsj #60 should fix your issue

philipheinser avatar Dec 08 '16 04:12 philipheinser

I met same problem

jy1989 avatar Jan 26 '17 10:01 jy1989