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
Toast
defaultShow
true
class Lobby extends React.Component { state = { warning: [false, undefined, undefined], }; showWarning = (warning) => { return ( <Toast showCloseIcon closeDelay={3000} defaultShow={warning[0]} title={warning[1]} description={[warning[2]]} onToggleShowToast={(isToast) => { if (isToast) { this.setState({ warning: [false, undefined, undefined] }); } }} /> ); }; render() { return ( <Row> <Col>{this.showWarning(warning)}</Col> <Col> <Button onClick={() => this.setState({ warning: [true, "title", "description"] }, () => { console.log("updated warning state", this.state.warning); }) } /> </Col> </Row> ); } }
For some weird reason, the Toast popup does not paint on the window screen. Because the state values are updated perfectly as seen from devtools view.
I've created a sandbox to reproduce the case. Although this works but has unexpected behaviors when triggered multiple times.
1.3.3
17.0.1
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Problem description
Toast
component (https://www.react-uwp.com/components/toast) does not work for me.Toast
component does have thedefaultShow
value astrue
.For some weird reason, the
Toast
popup does not paint on the window screen. Because the state values are updated perfectly as seen from devtools view.I've created a sandbox to reproduce the case. Although this works but has unexpected behaviors when triggered multiple times.
Versions
1.3.3
17.0.1
The text was updated successfully, but these errors were encountered: