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
After pull to refresh action loading indicator has still visible.
render() { return ( <Screen styleName="full-screen" style={{ marginTop: 70 }}> <ListView data={this.state.items} renderRow={item => this.renderRow(item)} onRefresh={() => { setTimeout(() => { this.setState({ loading: true, items: [{ name: 'test' }] }); }, 300); }} /> </Screen> ); }
How i can hide refreshable component?
The text was updated successfully, but these errors were encountered:
you should add loading(bool) props too. Judging by your code it should be
<ListView loading={this.state.loading} ...... />
Sorry, something went wrong.
@MirGhojam Thank!
No branches or pull requests
After pull to refresh action loading indicator has still visible.
How i can hide refreshable component?
The text was updated successfully, but these errors were encountered: