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
Widget content is being replaced with the last Widget which has the same applied style. This is happening after hot reload.
Widget
hot reload
Previously styled widgets are not being replaced with the last Widget which shares the same style.
class RowStyle { static final labelInput = n.Row(const []) ..px = 15 ..pb = 18 ..pt = 10 ..gap = 10; } class TextStyleNiku { static final labelInput = "".n ..mx = 15 ..fontSize = 13; } // ..... n.Column([ "Jual / Beli:".n ..apply = TextStyleNiku.labelInput.copied, // first text style // ..... "Kode saham:".n ..apply = TextStyleNiku.labelInput.copied, // last text style // .....
sdk: '>=2.18.5 <3.0.0' niku: ^2.3.3 flutter: 3.3.10
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Bug Description
Widget content is being replaced with the last
Widget
which has the same applied style. This is happening afterhot reload
.Video record
Kapture.2023-01-16.at.06.21.27.mp4
Expected
Previously styled widgets are not being replaced with the last Widget which shares the same style.
Example code
Environment
The text was updated successfully, but these errors were encountered: