We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
<View style={{flex: 1}}> <FlatList style={{flex: 1}} renderScrollComponent={ (props) => <ScrollView style={{flex: 1}} refreshControl={<SmartRefreshControl ref={ref => this.rc = ref} renderHeader={} onRefresh={() => { setTimeout(() => { this.rc && this.rc.finishRefresh(); }, 1000) }} />} > } renderItem={this._renderItem} data={data}
/> </View>
我总共定义了13条数据,但是超过10的就不会渲染出来了
The text was updated successfully, but these errors were encountered:
No branches or pull requests
<View style={{flex: 1}}>
<FlatList
style={{flex: 1}}
renderScrollComponent={
(props) => <ScrollView style={{flex: 1}}
refreshControl={<SmartRefreshControl
ref={ref => this.rc = ref}
renderHeader={}
onRefresh={() => {
setTimeout(() => {
this.rc && this.rc.finishRefresh();
}, 1000)
}}
/>}
>
}
renderItem={this._renderItem}
data={data}
我总共定义了13条数据,但是超过10的就不会渲染出来了
The text was updated successfully, but these errors were encountered: