-
Notifications
You must be signed in to change notification settings - Fork 90
New issue
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
StreamBuilder doesnt repaint #9
Comments
Yes if it doesn't change call setState. |
Hi trentpiercy, Here is the code:
|
the same thing happened to me, did you find any alternative? |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi,
The candles called with rxdart. It works fine. But I have the problem that the widget doesn't refresh if candles data changed. Do i need call setstate ?
Container buildOHLCVGraph(List candles) {
return Container(
height: 500.0,
child: OHLCVGraph(
data: candles,
enableGridLines: false,
volumeProp: 0.1
)
);
}
The text was updated successfully, but these errors were encountered: